From: rousskov <> Date: Thu, 26 Feb 1998 07:19:52 +0000 (+0000) Subject: Canceled "Status:" line change from the previous commit. Status line already X-Git-Tag: SQUID_3_0_PRE1~3981 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=12d850a623ccd9163e485f074dbf1d58c0bbffc0;p=thirdparty%2Fsquid.git Canceled "Status:" line change from the previous commit. Status line already contains '\n' and we do not have to add one. --- diff --git a/src/cachemgr.cc b/src/cachemgr.cc index b0be48308c..c0b3611ad3 100644 --- a/src/cachemgr.cc +++ b/src/cachemgr.cc @@ -1,5 +1,5 @@ /* - * $Id: cachemgr.cc,v 1.70 1998/02/26 00:09:23 rousskov Exp $ + * $Id: cachemgr.cc,v 1.71 1998/02/26 00:19:52 rousskov Exp $ * * DEBUG: section 0 CGI Cache Manager * AUTHOR: Duane Wessels @@ -359,7 +359,7 @@ read_reply(int s, cachemgr_request * req) } /* this is a way to pass HTTP status to the Web server */ if (statusStr) - printf("Status: %d %s\n", status, statusStr); + printf("Status: %d %s", status, statusStr); /* statusStr has '\n' */ break; case isHeaders: /* forward header field */