From 12d850a623ccd9163e485f074dbf1d58c0bbffc0 Mon Sep 17 00:00:00 2001 From: rousskov <> Date: Thu, 26 Feb 1998 07:19:52 +0000 Subject: [PATCH] Canceled "Status:" line change from the previous commit. Status line already contains '\n' and we do not have to add one. --- src/cachemgr.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 */ -- 2.47.3