You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ig...@apache.org on 2012/04/07 20:39:02 UTC

svn commit: r1310819 - /httpd/httpd/trunk/modules/cache/mod_socache_dc.c

Author: igalic
Date: Sat Apr  7 18:39:01 2012
New Revision: 1310819

URL: http://svn.apache.org/viewvc?rev=1310819&view=rev
Log:
fix style, no code change.

Modified:
    httpd/httpd/trunk/modules/cache/mod_socache_dc.c

Modified: httpd/httpd/trunk/modules/cache/mod_socache_dc.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/cache/mod_socache_dc.c?rev=1310819&r1=1310818&r2=1310819&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/cache/mod_socache_dc.c (original)
+++ httpd/httpd/trunk/modules/cache/mod_socache_dc.c Sat Apr  7 18:39:01 2012
@@ -140,7 +140,8 @@ static apr_status_t socache_dc_remove(ap
     if (!DC_CTX_remove_session(ctx->dc, id, idlen)) {
         ap_log_error(APLOG_MARK, APLOG_ERR, 0, s, APLOGNO(00745) "distributed scache 'remove' MISS");
         return APR_NOTFOUND;
-    } else {
+    }
+    else {
         ap_log_error(APLOG_MARK, APLOG_ERR, 0, s, APLOGNO(00746) "distributed scache 'remove' HIT");
         return APR_SUCCESS;
     }