Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 7554 invoked from network); 17 Aug 2009 17:26:06 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 17 Aug 2009 17:26:06 -0000 Received: (qmail 76830 invoked by uid 500); 17 Aug 2009 17:26:12 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 76743 invoked by uid 500); 17 Aug 2009 17:26:12 -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 76734 invoked by uid 99); 17 Aug 2009 17:26:12 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 17 Aug 2009 17:26:12 +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; Mon, 17 Aug 2009 17:26:10 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 97A6C2388867; Mon, 17 Aug 2009 17:25:50 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r805059 - /httpd/mod_ftp/trunk/modules/ftp/ftp_protocol.c Date: Mon, 17 Aug 2009 17:25:50 -0000 To: cvs@httpd.apache.org From: wrowe@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090817172550.97A6C2388867@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: wrowe Date: Mon Aug 17 17:25:50 2009 New Revision: 805059 URL: http://svn.apache.org/viewvc?rev=805059&view=rev Log: correct syntax Modified: httpd/mod_ftp/trunk/modules/ftp/ftp_protocol.c Modified: httpd/mod_ftp/trunk/modules/ftp/ftp_protocol.c URL: http://svn.apache.org/viewvc/httpd/mod_ftp/trunk/modules/ftp/ftp_protocol.c?rev=805059&r1=805058&r2=805059&view=diff ============================================================================== --- httpd/mod_ftp/trunk/modules/ftp/ftp_protocol.c (original) +++ httpd/mod_ftp/trunk/modules/ftp/ftp_protocol.c Mon Aug 17 17:25:50 2009 @@ -835,9 +835,9 @@ default: ftp_reply(fc, c->output_filters, r->pool, status, 0, - "%s", (fc->response_notes && *fc->response_notes - ? fc->response_notes - : "Error (no message)"); + "%s", (fc->response_notes && *fc->response_notes) + ? fc->response_notes + : "Error (no message)"); } return;