From: Christophe Jaillet Date: Fri, 12 Oct 2012 16:41:34 +0000 (+0000) Subject: s/;;/;/ X-Git-Tag: 2.5.0-alpha~6207 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2cf5acd15fd58fff1c25e7ef1d2c3811e5c1d139;p=thirdparty%2Fapache%2Fhttpd.git s/;;/;/ git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1397636 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/examples/mod_example_hooks.c b/modules/examples/mod_example_hooks.c index 743c395065d..1c8ca4c1c61 100644 --- a/modules/examples/mod_example_hooks.c +++ b/modules/examples/mod_example_hooks.c @@ -1019,7 +1019,7 @@ static int x_handler(request_rec *r) ap_get_server_banner()); ap_rputs("
\n", r); ap_rprintf(r, " Server built: \"%s\"\n", ap_get_server_built()); - ap_rputs("

\n", r);; + ap_rputs("

\n", r); ap_rputs("

\n", r); ap_rputs(" The format for the callback trace is:\n", r); ap_rputs("

\n", r); diff --git a/modules/generators/mod_autoindex.c b/modules/generators/mod_autoindex.c index 926f8c83a51..40ff56a4bfd 100644 --- a/modules/generators/mod_autoindex.c +++ b/modules/generators/mod_autoindex.c @@ -694,7 +694,7 @@ static void *merge_autoindex_configs(apr_pool_t *p, void *basev, void *addv) * There are local nonincremental settings, which clear * all inheritance from above. They *are* the new base settings. */ - new->opts = add->opts;; + new->opts = add->opts; } /* * We're guaranteed that there'll be no overlap between diff --git a/modules/loggers/mod_log_config.c b/modules/loggers/mod_log_config.c index 1b3947238c9..b48f2528c4f 100644 --- a/modules/loggers/mod_log_config.c +++ b/modules/loggers/mod_log_config.c @@ -1552,7 +1552,7 @@ static void *ap_default_log_writer_init(apr_pool_t *p, server_rec *s, pl = ap_open_piped_log(p, name + 1); if (pl == NULL) { - return NULL;; + return NULL; } return ap_piped_log_write_fd(pl); } diff --git a/modules/session/mod_session.c b/modules/session/mod_session.c index 7f855c7277c..a3354a59c4b 100644 --- a/modules/session/mod_session.c +++ b/modules/session/mod_session.c @@ -334,7 +334,7 @@ static apr_status_t session_identity_encode(request_rec * r, session_rec * z) apr_table_setn(z->entries, SESSION_EXPIRY, expiry); } apr_table_do((int (*) (void *, const char *, const char *)) - identity_count, &length, z->entries, NULL);; + identity_count, &length, z->entries, NULL); buffer = apr_pcalloc(r->pool, length + 1); apr_table_do((int (*) (void *, const char *, const char *)) identity_concat, buffer, z->entries, NULL); diff --git a/server/provider.c b/server/provider.c index a102dd851b1..cf307e7c72f 100644 --- a/server/provider.c +++ b/server/provider.c @@ -42,7 +42,7 @@ AP_DECLARE(apr_status_t) ap_register_provider(apr_pool_t *pool, if (global_providers == NULL) { global_providers = apr_hash_make(pool); - global_providers_names = apr_hash_make(pool);; + global_providers_names = apr_hash_make(pool); apr_pool_cleanup_register(pool, NULL, cleanup_global_providers, apr_pool_cleanup_null); }