From: Daniel Stenberg Date: Thu, 3 Apr 2003 13:43:15 +0000 (+0000) Subject: Added log output for when the writing of the input HTTP request is successful X-Git-Tag: curl-7_10_5~118 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=df7bbcfd21909d2eb474b75a110bb2cde07c8d76;p=curl Added log output for when the writing of the input HTTP request is successful or unsuccessful. Used to track down the recent cygwin test suite problems. --- diff --git a/tests/server/sws.c b/tests/server/sws.c index 007d6b753..4f9baba1b 100644 --- a/tests/server/sws.c +++ b/tests/server/sws.c @@ -198,8 +198,11 @@ void storerequest(char *reqbuf) fwrite(reqbuf, 1, strlen(reqbuf), dump); fclose(dump); + logmsg("Wrote request input to " REQUEST_DUMP); + } + else { + logmsg("Failed to write request input to " REQUEST_DUMP); } - }