diff options
author | Ryan Bloom <rbb@apache.org> | 2000-07-28 22:12:42 +0200 |
---|---|---|
committer | Ryan Bloom <rbb@apache.org> | 2000-07-28 22:12:42 +0200 |
commit | c90431e69c8622a9c9d010285e67fe05a33cf351 (patch) | |
tree | 97f233e0c1f9e19a883e5fe7bce6ca3f5262d68b /include/http_config.h | |
parent | Cleanup the perchild MPM. What I am doing so far in this MPM does not (diff) | |
download | apache2-c90431e69c8622a9c9d010285e67fe05a33cf351.tar.xz apache2-c90431e69c8622a9c9d010285e67fe05a33cf351.zip |
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
Diffstat (limited to 'include/http_config.h')
-rw-r--r-- | include/http_config.h | 4 |
1 files 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 } |