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 870371098A for ; Thu, 21 Nov 2013 12:24:22 +0000 (UTC) Received: (qmail 45502 invoked by uid 500); 21 Nov 2013 12:24:21 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 45264 invoked by uid 500); 21 Nov 2013 12:24:14 -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 45257 invoked by uid 99); 21 Nov 2013 12:24:13 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 21 Nov 2013 12:24:13 +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; Thu, 21 Nov 2013 12:24:11 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 00E50238883D; Thu, 21 Nov 2013 12:23:49 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1544156 - /httpd/httpd/trunk/include/http_core.h Date: Thu, 21 Nov 2013 12:23:49 -0000 To: cvs@httpd.apache.org From: trawick@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20131121122350.00E50238883D@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: trawick Date: Thu Nov 21 12:23:49 2013 New Revision: 1544156 URL: http://svn.apache.org/r1544156 Log: Follow-up to r1541029: Clarify handling of the directive argument Modified: httpd/httpd/trunk/include/http_core.h Modified: httpd/httpd/trunk/include/http_core.h URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/include/http_core.h?rev=1544156&r1=1544155&r2=1544156&view=diff ============================================================================== --- httpd/httpd/trunk/include/http_core.h (original) +++ httpd/httpd/trunk/include/http_core.h Thu Nov 21 12:23:49 2013 @@ -874,8 +874,11 @@ struct ap_errorlog_provider { /** Checks syntax of ErrorLog directive argument. * @param cmd The config directive - * @param arg ErrorLog directive argument + * @param arg ErrorLog directive argument (or the empty string if + * no argument was provided) * @return Error message or NULL on success + * @remark The argument will be stored in the error_fname field + * of server_rec for access later. */ const char * (*parse_errorlog_arg)(cmd_parms *cmd, const char *arg);