From ce2ce1ebb2a59a5b700e02c08a0db4087b6a37a9 Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Wed, 2 Aug 2000 01:01:12 +0000 Subject: [PATCH] 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 --- modules/mappers/mod_speling.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 } }; -- 2.50.1