Return-Path: Delivered-To: apmail-apache-cvs-archive@apache.org Received: (qmail 9396 invoked by uid 500); 2 Aug 2000 01:01:14 -0000 Mailing-List: contact apache-cvs-help@apache.org; run by ezmlm Precedence: bulk X-No-Archive: yes Reply-To: new-httpd@apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list apache-cvs@apache.org Received: (qmail 9330 invoked by uid 500); 2 Aug 2000 01:01:13 -0000 Delivered-To: apmail-apache-2.0-cvs@apache.org Date: 2 Aug 2000 01:01:12 -0000 Message-ID: <20000802010112.9291.qmail@locus.apache.org> From: trawick@locus.apache.org To: apache-2.0-cvs@apache.org Subject: cvs commit: apache-2.0/src/modules/standard mod_speling.c trawick 00/08/01 18:01:12 Modified: src/modules/standard mod_speling.c Log: Use the AP_INIT_FLAG() macro to clean up a maintainer-mode warning. Revision Changes Path 1.17 +2 -2 apache-2.0/src/modules/standard/mod_speling.c Index: mod_speling.c =================================================================== RCS file: /home/cvs/apache-2.0/src/modules/standard/mod_speling.c,v retrieving revision 1.16 retrieving revision 1.17 diff -u -r1.16 -r1.17 --- mod_speling.c 2000/07/25 00:58:21 1.16 +++ mod_speling.c 2000/08/02 01:01:12 1.17 @@ -145,8 +145,8 @@ */ 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 } };