Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 83689 invoked from network); 29 Sep 2003 14:03:39 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 29 Sep 2003 14:03:39 -0000 Received: (qmail 5952 invoked by uid 500); 29 Sep 2003 14:03:34 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 5926 invoked by uid 500); 29 Sep 2003 14:03:34 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 5899 invoked by uid 500); 29 Sep 2003 14:03:33 -0000 Delivered-To: apmail-httpd-2.0-cvs@apache.org Received: (qmail 5895 invoked from network); 29 Sep 2003 14:03:33 -0000 Received: from unknown (HELO minotaur.apache.org) (209.237.227.194) by daedalus.apache.org with SMTP; 29 Sep 2003 14:03:33 -0000 Received: (qmail 83676 invoked by uid 1121); 29 Sep 2003 14:03:37 -0000 Date: 29 Sep 2003 14:03:37 -0000 Message-ID: <20030929140337.83675.qmail@minotaur.apache.org> From: trawick@apache.org To: httpd-2.0-cvs@apache.org Subject: cvs commit: httpd-2.0/modules/mappers mod_actions.c X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N trawick 2003/09/29 07:03:37 Modified: modules/mappers mod_actions.c Log: make sure we have prototype for strcasecmp() Revision Changes Path 1.34 +2 -0 httpd-2.0/modules/mappers/mod_actions.c Index: mod_actions.c =================================================================== RCS file: /home/cvs/httpd-2.0/modules/mappers/mod_actions.c,v retrieving revision 1.33 retrieving revision 1.34 diff -u -r1.33 -r1.34 --- mod_actions.c 14 Jul 2003 16:04:47 -0000 1.33 +++ mod_actions.c 29 Sep 2003 14:03:37 -0000 1.34 @@ -79,6 +79,8 @@ */ #include "apr_strings.h" +#define APR_WANT_STRFUNC +#include "apr_want.h" #include "ap_config.h" #include "httpd.h" #include "http_config.h"