You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ja...@apache.org on 2014/10/04 22:09:11 UTC

svn commit: r1629441 - /httpd/httpd/trunk/modules/aaa/mod_allowmethods.c

Author: jailletc36
Date: Sat Oct  4 20:09:10 2014
New Revision: 1629441

URL: http://svn.apache.org/r1629441
Log:
More style

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

Modified: httpd/httpd/trunk/modules/aaa/mod_allowmethods.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/aaa/mod_allowmethods.c?rev=1629441&r1=1629440&r2=1629441&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/aaa/mod_allowmethods.c (original)
+++ httpd/httpd/trunk/modules/aaa/mod_allowmethods.c Sat Oct  4 20:09:10 2014
@@ -85,9 +85,10 @@ static void *am_create_conf(apr_pool_t *
     return conf;
 }
 
-static void* am_merge_conf(apr_pool_t *pool, void *a, void *b) {
-    am_conf_t *base = (am_conf_t*) a;
-    am_conf_t *add = (am_conf_t*) b;
+static void *am_merge_conf(apr_pool_t *pool, void *a, void *b)
+{
+    am_conf_t *base = (am_conf_t *)a;
+    am_conf_t *add = (am_conf_t *)b;
     am_conf_t *conf = apr_palloc(pool, sizeof(am_conf_t));
 
     if (add->allowed_set) {
@@ -106,7 +107,7 @@ static const char *am_allowmethods(cmd_p
                                    char *const argv[])
 {
     int i;
-    am_conf_t *conf = (am_conf_t*) d;
+    am_conf_t *conf = (am_conf_t *)d;
 
     if (argc == 0) {
         return "AllowMethods: No method or 'reset' keyword given";