Return-Path: X-Original-To: apmail-httpd-cvs-archive@www.apache.org Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id ED1E29324 for ; Tue, 17 Apr 2012 08:07:34 +0000 (UTC) Received: (qmail 10977 invoked by uid 500); 17 Apr 2012 08:07:34 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 10769 invoked by uid 500); 17 Apr 2012 08:07: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: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 10743 invoked by uid 99); 17 Apr 2012 08:07:33 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 17 Apr 2012 08:07:33 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.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; Tue, 17 Apr 2012 08:07:32 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 458862388847; Tue, 17 Apr 2012 08:07:12 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1326980 - /httpd/httpd/trunk/modules/loggers/mod_log_debug.c Date: Tue, 17 Apr 2012 08:07:12 -0000 To: cvs@httpd.apache.org From: jorton@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120417080712.458862388847@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jorton Date: Tue Apr 17 08:07:11 2012 New Revision: 1326980 URL: http://svn.apache.org/viewvc?rev=1326980&view=rev Log: * modules/loggers/mod_log_debug.c: Mark private globals as static. Modified: httpd/httpd/trunk/modules/loggers/mod_log_debug.c Modified: httpd/httpd/trunk/modules/loggers/mod_log_debug.c URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/loggers/mod_log_debug.c?rev=1326980&r1=1326979&r2=1326980&view=diff ============================================================================== --- httpd/httpd/trunk/modules/loggers/mod_log_debug.c (original) +++ httpd/httpd/trunk/modules/loggers/mod_log_debug.c Tue Apr 17 08:07:11 2012 @@ -35,8 +35,8 @@ typedef struct { apr_array_header_t *entries; } log_debug_dirconf; -const char *allhooks = "all"; -const char * const hooks[] = { +static const char *allhooks = "all"; +static const char * const hooks[] = { "log_transaction", /* 0 */ "quick_handler", /* 1 */ "handler", /* 2 */