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 3749B17C86 for ; Mon, 6 Oct 2014 13:39:52 +0000 (UTC) Received: (qmail 79727 invoked by uid 500); 6 Oct 2014 13:39:52 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 79643 invoked by uid 500); 6 Oct 2014 13:39:52 -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 79633 invoked by uid 99); 6 Oct 2014 13:39:52 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Oct 2014 13:39:52 +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; Mon, 06 Oct 2014 13:39:51 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 9A0692388999; Mon, 6 Oct 2014 13:39:30 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1629652 - /httpd/httpd/trunk/modules/cache/mod_cache_socache.c Date: Mon, 06 Oct 2014 13:39:30 -0000 To: cvs@httpd.apache.org From: rjung@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20141006133930.9A0692388999@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: rjung Date: Mon Oct 6 13:39:30 2014 New Revision: 1629652 URL: http://svn.apache.org/r1629652 Log: Silence build warning about missing prototype. Followup to r1629507. Modified: httpd/httpd/trunk/modules/cache/mod_cache_socache.c Modified: httpd/httpd/trunk/modules/cache/mod_cache_socache.c URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/cache/mod_cache_socache.c?rev=1629652&r1=1629651&r2=1629652&view=diff ============================================================================== --- httpd/httpd/trunk/modules/cache/mod_cache_socache.c (original) +++ httpd/httpd/trunk/modules/cache/mod_cache_socache.c Mon Oct 6 13:39:30 2014 @@ -1422,7 +1422,7 @@ static int socache_status_hook(request_r return OK; } -void socache_status_register(apr_pool_t *p) +static void socache_status_register(apr_pool_t *p) { APR_OPTIONAL_HOOK(ap, status_hook, socache_status_hook, NULL, NULL, APR_HOOK_MIDDLE); }