From f36dd14a3bd06284fa7c592ffa6836ec146032d3 Mon Sep 17 00:00:00 2001 From: Ryan Bloom Date: Fri, 28 Jul 2000 18:53:01 +0000 Subject: [PATCH] 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 --- include/http_config.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/http_config.h b/include/http_config.h index 5f964c2ad3..f3cf13bca1 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 } -- 2.50.1