summaryrefslogtreecommitdiff
path: root/modules/cache
diff options
context:
space:
mode:
authorChristophe Jaillet <jailletc36@apache.org>2017-03-27 19:49:58 +0000
committerChristophe Jaillet <jailletc36@apache.org>2017-03-27 19:49:58 +0000
commit2cd566b81703208d00944cebf59d2d5bb123f345 (patch)
tree2a4b534a37a6f6dd916cb7e5481070369fb4be9f /modules/cache
parent8533abfc4107e9b43e5dfeaa5f13d466eb5bb621 (diff)
downloadhttpd-2cd566b81703208d00944cebf59d2d5bb123f345.tar.gz
Improve indentation
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1788998 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/cache')
-rw-r--r--modules/cache/mod_cache_socache.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/cache/mod_cache_socache.c b/modules/cache/mod_cache_socache.c
index 9875ce2822..e7fa462acc 100644
--- a/modules/cache/mod_cache_socache.c
+++ b/modules/cache/mod_cache_socache.c
@@ -1249,7 +1249,7 @@ static const char *set_cache_socache(cmd_parms *cmd, void *in_struct_ptr,
name, AP_SOCACHE_PROVIDER_VERSION);
if (provider->socache_provider == NULL) {
err = apr_psprintf(cmd->pool,
- "Unknown socache provider '%s'. Maybe you need "
+ "Unknown socache provider '%s'. Maybe you need "
"to load the appropriate socache module "
"(mod_socache_%s?)", name, name);
}
@@ -1417,7 +1417,7 @@ static int socache_precfg(apr_pool_t *pconf, apr_pool_t *plog, apr_pool_t *ptmp)
APR_LOCK_DEFAULT, 0);
if (rv != APR_SUCCESS) {
ap_log_perror(APLOG_MARK, APLOG_CRIT, rv, plog, APLOGNO(02390)
- "failed to register %s mutex", cache_socache_id);
+ "failed to register %s mutex", cache_socache_id);
return 500; /* An HTTP status would be a misnomer! */
}
@@ -1451,7 +1451,7 @@ static int socache_post_config(apr_pool_t *pconf, apr_pool_t *plog,
NULL, s, pconf, 0);
if (rv != APR_SUCCESS) {
ap_log_perror(APLOG_MARK, APLOG_CRIT, rv, plog, APLOGNO(02391)
- "failed to create %s mutex", cache_socache_id);
+ "failed to create %s mutex", cache_socache_id);
return 500; /* An HTTP status would be a misnomer! */
}
apr_pool_cleanup_register(pconf, NULL, remove_lock,
@@ -1472,7 +1472,7 @@ static int socache_post_config(apr_pool_t *pconf, apr_pool_t *plog,
&socache_hints, s, pconf);
if (rv != APR_SUCCESS) {
ap_log_perror(APLOG_MARK, APLOG_CRIT, rv, plog, APLOGNO(02393)
- "failed to initialise %s cache", cache_socache_id);
+ "failed to initialise %s cache", cache_socache_id);
return 500; /* An HTTP status would be a misnomer! */
}
apr_pool_cleanup_register(pconf, (void *) s, destroy_cache,