From 132dc4e8fb673fb7c79a1ed4235403f676a7ea4d Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Sun, 18 Jun 2000 03:01:30 +0000 Subject: [PATCH] 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 --- include/http_config.h | 4 ++++ 1 file changed, 4 insertions(+) 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 } -- 2.40.0