1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1397636 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Christophe Jaillet
2012-10-12 16:41:34 +00:00
parent 5e46d671e1
commit 2cf5acd15f
5 changed files with 5 additions and 5 deletions

View File

@@ -1019,7 +1019,7 @@ static int x_handler(request_rec *r)
ap_get_server_banner()); ap_get_server_banner());
ap_rputs(" <BR>\n", r); ap_rputs(" <BR>\n", r);
ap_rprintf(r, " Server built: \"%s\"\n", ap_get_server_built()); ap_rprintf(r, " Server built: \"%s\"\n", ap_get_server_built());
ap_rputs(" </P>\n", r);; ap_rputs(" </P>\n", r);
ap_rputs(" <P>\n", r); ap_rputs(" <P>\n", r);
ap_rputs(" The format for the callback trace is:\n", r); ap_rputs(" The format for the callback trace is:\n", r);
ap_rputs(" </P>\n", r); ap_rputs(" </P>\n", r);

View File

@@ -694,7 +694,7 @@ static void *merge_autoindex_configs(apr_pool_t *p, void *basev, void *addv)
* There are local nonincremental settings, which clear * There are local nonincremental settings, which clear
* all inheritance from above. They *are* the new base settings. * 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 * We're guaranteed that there'll be no overlap between

View File

@@ -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); pl = ap_open_piped_log(p, name + 1);
if (pl == NULL) { if (pl == NULL) {
return NULL;; return NULL;
} }
return ap_piped_log_write_fd(pl); return ap_piped_log_write_fd(pl);
} }

View File

@@ -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_setn(z->entries, SESSION_EXPIRY, expiry);
} }
apr_table_do((int (*) (void *, const char *, const char *)) 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); buffer = apr_pcalloc(r->pool, length + 1);
apr_table_do((int (*) (void *, const char *, const char *)) apr_table_do((int (*) (void *, const char *, const char *))
identity_concat, buffer, z->entries, NULL); identity_concat, buffer, z->entries, NULL);

View File

@@ -42,7 +42,7 @@ AP_DECLARE(apr_status_t) ap_register_provider(apr_pool_t *pool,
if (global_providers == NULL) { if (global_providers == NULL) {
global_providers = apr_hash_make(pool); 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_register(pool, NULL, cleanup_global_providers,
apr_pool_cleanup_null); apr_pool_cleanup_null);
} }