From c90431e69c8622a9c9d010285e67fe05a33cf351 Mon Sep 17 00:00:00 2001 From: Ryan Bloom Date: Fri, 28 Jul 2000 20:12:42 +0000 Subject: [PATCH] Fix a small typo. TAKE3 directives really do need to take all 3 arguments. Submitted by: Jeff Trawick git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85925 13f79535-47bb-0310-9956-ffa450edef68 --- include/http_config.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/http_config.h b/include/http_config.h index f3cf13bca1..3cb3eb4b2f 100644 --- a/include/http_config.h +++ b/include/http_config.h @@ -136,7 +136,7 @@ typedef union { # 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 } + { directive, { .take3=func }, mconfig, where, TAKE3, help } # define AP_INIT_FLAG(directive, func, mconfig, where, help) \ { directive, { .flag=func }, mconfig, where, FLAG, help } @@ -168,7 +168,7 @@ typedef const char *(*cmd_func) (); # 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 } + { directive, func, mconfig, where, TAKE3, help } # define AP_INIT_FLAG(directive, func, mconfig, where, help) \ { directive, func, mconfig, where, FLAG, help } -- 2.50.1