]> granicus.if.org Git - apache/commitdiff
Fix a small typo. TAKE3 directives really do need to take all 3 arguments.
authorRyan Bloom <rbb@apache.org>
Fri, 28 Jul 2000 20:12:42 +0000 (20:12 +0000)
committerRyan Bloom <rbb@apache.org>
Fri, 28 Jul 2000 20:12:42 +0000 (20:12 +0000)
Submitted by: Jeff Trawick

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85925 13f79535-47bb-0310-9956-ffa450edef68

include/http_config.h

index f3cf13bca188fbf1b7b6fbb64f4cc67e2616292b..3cb3eb4b2fb807fd3893089a95f62a461c5c311f 100644 (file)
@@ -136,7 +136,7 @@ typedef union {
 # define AP_INIT_TAKE23(directive, func, mconfig, where, help) \
     { directive, { .take3=func }, mconfig, where, TAKE23, help }
 # define AP_INIT_TAKE3(directive, func, mconfig, where, help) \
-    { directive, { .take3=func }, mconfig, where, TAKE23, help }
+    { directive, { .take3=func }, mconfig, where, TAKE3, help }
 # define AP_INIT_FLAG(directive, func, mconfig, where, help) \
     { directive, { .flag=func }, mconfig, where, FLAG, help }
 
@@ -168,7 +168,7 @@ typedef const char *(*cmd_func) ();
 # define AP_INIT_TAKE23(directive, func, mconfig, where, help) \
     { directive, func, mconfig, where, TAKE23, help }
 # define AP_INIT_TAKE3(directive, func, mconfig, where, help) \
-    { directive, func, mconfig, where, TAKE23, help }
+    { directive, func, mconfig, where, TAKE3, help }
 # define AP_INIT_FLAG(directive, func, mconfig, where, help) \
     { directive, func, mconfig, where, FLAG, help }