From 2cf5acd15fd58fff1c25e7ef1d2c3811e5c1d139 Mon Sep 17 00:00:00 2001
From: Christophe Jaillet
\n", r);
ap_rprintf(r, " Server built: \"%s\"\n", ap_get_server_built());
- 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 926f8c83a5..40ff56a4bf 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 1b3947238c..b48f2528c4 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 7f855c7277..a3354a59c4 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 a102dd851b..cf307e7c72 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); } -- 2.40.0