You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ch...@apache.org on 2008/11/01 20:03:56 UTC

svn commit: r709754 - /httpd/httpd/trunk/modules/aaa/mod_authz_core.c

Author: chrisd
Date: Sat Nov  1 12:03:56 2008
New Revision: 709754

URL: http://svn.apache.org/viewvc?rev=709754&view=rev
Log:
minor formatting changes prior to larger changes

Modified:
    httpd/httpd/trunk/modules/aaa/mod_authz_core.c

Modified: httpd/httpd/trunk/modules/aaa/mod_authz_core.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/aaa/mod_authz_core.c?rev=709754&r1=709753&r2=709754&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/aaa/mod_authz_core.c (original)
+++ httpd/httpd/trunk/modules/aaa/mod_authz_core.c Sat Nov  1 12:03:56 2008
@@ -121,6 +121,7 @@
     conf->req_state = BASE_REQ_STATE;
     conf->req_state_level = BASE_REQ_LEVEL;
     conf->merge_rules = 1;
+
     return (void *)conf;
 }
 
@@ -154,7 +155,6 @@
 
 static void *create_authz_core_svr_config(apr_pool_t *p, server_rec *s)
 {
-
     authz_core_srv_conf *authcfg;
 
     authcfg = apr_pcalloc(p, sizeof(*authcfg));
@@ -258,7 +258,8 @@
      * merge just before the real provider is called.
      */
     cmd->override = OR_ALL|ACCESS_CONF;
-    errmsg = ap_walk_config(cmd->directive->first_child, cmd, new_authz_config);
+    errmsg = ap_walk_config(cmd->directive->first_child, cmd,
+                            new_authz_config);
     cmd->override = old_overrides;
 
     if (!errmsg) {