From: serassio <> Date: Thu, 15 Sep 2005 16:14:50 +0000 (+0000) Subject: Fix missing newlines in debug output X-Git-Tag: SQUID_3_0_PRE4~621 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=880add507c3fae4a9072c4bd166201755d3935bc;p=thirdparty%2Fsquid.git Fix missing newlines in debug output --- diff --git a/src/ftp.cc b/src/ftp.cc index d3b7100398..efd272e465 100644 --- a/src/ftp.cc +++ b/src/ftp.cc @@ -1,6 +1,6 @@ /* - * $Id: ftp.cc,v 1.366 2005/09/10 19:31:31 serassio Exp $ + * $Id: ftp.cc,v 1.367 2005/09/15 10:14:50 serassio Exp $ * * DEBUG: section 9 File Transfer Protocol (FTP) * AUTHOR: Harvest Derived @@ -2414,7 +2414,7 @@ ftpAcceptDataConnection(int fd, int newfd, ConnectionDetail *details, } if (flag != COMM_OK) { - debug(9, 1) ("ftpHandleDataAccept: comm_accept(%d): %s", newfd, xstrerr(xerrno)); + debug(9, 1) ("ftpHandleDataAccept: comm_accept(%d): %s\n", newfd, xstrerr(xerrno)); /* XXX Need to set error message */ ftpFail(ftpState); return;