From: Ryan Bloom Date: Fri, 28 Jul 2000 18:53:01 +0000 (+0000) Subject: Add the macro for AP_INIT_TAKE3 directives. I am assuming this was left X-Git-Tag: APACHE_2_0_ALPHA_5~58 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f36dd14a3bd06284fa7c592ffa6836ec146032d3;p=thirdparty%2Fapache%2Fhttpd.git Add the macro for AP_INIT_TAKE3 directives. I am assuming this was left out by mistake. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85923 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/include/http_config.h b/include/http_config.h index 5f964c2ad34..f3cf13bca18 100644 --- a/include/http_config.h +++ b/include/http_config.h @@ -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 }