]> granicus.if.org Git - apache/commitdiff
Add the macro for AP_INIT_TAKE3 directives. I am assuming this was left
authorRyan Bloom <rbb@apache.org>
Fri, 28 Jul 2000 18:53:01 +0000 (18:53 +0000)
committerRyan Bloom <rbb@apache.org>
Fri, 28 Jul 2000 18:53:01 +0000 (18:53 +0000)
out by mistake.

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

include/http_config.h

index 5f964c2ad34e36486161ecac936cd20206759e48..f3cf13bca188fbf1b7b6fbb64f4cc67e2616292b 100644 (file)
@@ -135,6 +135,8 @@ typedef union {
     { directive, { .take2=func }, mconfig, where, ITERATE2, help }
 # 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 }
 # define AP_INIT_FLAG(directive, func, mconfig, where, help) \
     { directive, { .flag=func }, mconfig, where, FLAG, help }
 
@@ -165,6 +167,8 @@ typedef const char *(*cmd_func) ();
     { directive, func, mconfig, where, ITERATE2, help }
 # 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 }
 # define AP_INIT_FLAG(directive, func, mconfig, where, help) \
     { directive, func, mconfig, where, FLAG, help }