Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 14965 invoked from network); 11 Jun 2010 17:40:03 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 11 Jun 2010 17:40:03 -0000 Received: (qmail 9748 invoked by uid 500); 11 Jun 2010 17:40:03 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 9672 invoked by uid 500); 11 Jun 2010 17:40:02 -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: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 9665 invoked by uid 99); 11 Jun 2010 17:40:02 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 11 Jun 2010 17:40:02 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 11 Jun 2010 17:40:00 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 6DE9F2388999; Fri, 11 Jun 2010 17:39:17 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r953785 - /httpd/httpd/trunk/modules/mappers/mod_rewrite.c Date: Fri, 11 Jun 2010 17:39:17 -0000 To: cvs@httpd.apache.org From: covener@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100611173917.6DE9F2388999@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: covener Date: Fri Jun 11 17:39:17 2010 New Revision: 953785 URL: http://svn.apache.org/viewvc?rev=953785&view=rev Log: mod_rewrite.c:447: warning: format not a string literal and no format arguments Modified: httpd/httpd/trunk/modules/mappers/mod_rewrite.c Modified: httpd/httpd/trunk/modules/mappers/mod_rewrite.c URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/mappers/mod_rewrite.c?rev=953785&r1=953784&r2=953785&view=diff ============================================================================== --- httpd/httpd/trunk/modules/mappers/mod_rewrite.c (original) +++ httpd/httpd/trunk/modules/mappers/mod_rewrite.c Fri Jun 11 17:39:17 2010 @@ -444,7 +444,7 @@ static void do_rewritelog(request_rec *r AP_REWRITE_LOG((uintptr_t)r, level, r->main ? 0 : 1, (char *)ap_get_server_name(r), logline); - ap_log_rerror(APLOG_MARK, APLOG_DEBUG + level, 0, r, logline); + ap_log_rerror(APLOG_MARK, APLOG_DEBUG + level, 0, r, "%s", logline); return; }