From: Jeff Trawick Date: Sun, 18 Jun 2000 03:01:30 +0000 (+0000) Subject: Provide some more missing initializer macros for when AP_DEBUG isn't X-Git-Tag: APACHE_2_0_ALPHA_5~310 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=132dc4e8fb673fb7c79a1ed4235403f676a7ea4d;p=apache Provide some more missing initializer macros for when AP_DEBUG isn't defined (no, I didn't miss these in my commit this a.m. :) ). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85605 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/include/http_config.h b/include/http_config.h index 47a45d90da..441a84500e 100644 --- a/include/http_config.h +++ b/include/http_config.h @@ -161,6 +161,10 @@ typedef const char *(*cmd_func) (); { directive, func, mconfig, where, TAKE2, help } # define AP_INIT_TAKE12(directive, func, mconfig, where, help) \ { directive, func, mconfig, where, TAKE12, help } +# define AP_INIT_ITERATE2(directive, func, mconfig, where, help) \ + { directive, func, mconfig, where, ITERATE2, help } +# define AP_INIT_TAKE23(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 }