From: Jeff Trawick Date: Wed, 2 Aug 2000 01:01:12 +0000 (+0000) Subject: Use the AP_INIT_FLAG() macro to clean up a maintainer-mode warning. X-Git-Tag: APACHE_2_0_ALPHA_5~13 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ce2ce1ebb2a59a5b700e02c08a0db4087b6a37a9;p=apache Use the AP_INIT_FLAG() macro to clean up a maintainer-mode warning. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85974 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/mappers/mod_speling.c b/modules/mappers/mod_speling.c index 30a4c4ed7a..62fd5b13a5 100644 --- a/modules/mappers/mod_speling.c +++ b/modules/mappers/mod_speling.c @@ -145,8 +145,8 @@ static const char *set_speling(cmd_parms *cmd, void *mconfig, int arg) */ static const command_rec speling_cmds[] = { - { "CheckSpelling", set_speling, NULL, OR_OPTIONS, FLAG, - "whether or not to fix miscapitalized/misspelled requests" }, + AP_INIT_FLAG("CheckSpelling", set_speling, NULL, OR_OPTIONS, + "whether or not to fix miscapitalized/misspelled requests"), { NULL } };