mirror of
https://github.com/apache/httpd.git
synced 2025-08-08 15:02:10 +03:00
s/;;/;/
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1397636 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@@ -1019,7 +1019,7 @@ static int x_handler(request_rec *r)
|
||||
ap_get_server_banner());
|
||||
ap_rputs(" <BR>\n", r);
|
||||
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(" The format for the callback trace is:\n", r);
|
||||
ap_rputs(" </P>\n", r);
|
||||
|
@@ -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
|
||||
|
@@ -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);
|
||||
}
|
||||
|
@@ -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);
|
||||
|
@@ -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);
|
||||
}
|
||||
|
Reference in New Issue
Block a user