]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Canceled "Status:" line change from the previous commit. Status line already
authorrousskov <>
Thu, 26 Feb 1998 07:19:52 +0000 (07:19 +0000)
committerrousskov <>
Thu, 26 Feb 1998 07:19:52 +0000 (07:19 +0000)
contains '\n' and we do not have to add one.

src/cachemgr.cc

index b0be48308c00e29eb38814f60afefff08e266d09..c0b3611ad3717c579c5bff3b70fca6f36146d9d3 100644 (file)
@@ -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 */