]> granicus.if.org Git - curl/commitdiff
Added log output for when the writing of the input HTTP request is successful
authorDaniel Stenberg <daniel@haxx.se>
Thu, 3 Apr 2003 13:43:15 +0000 (13:43 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 3 Apr 2003 13:43:15 +0000 (13:43 +0000)
or unsuccessful. Used to track down the recent cygwin test suite problems.

tests/server/sws.c

index 007d6b7530a84098edc8441a88fc9ad16fb7593a..4f9baba1b9fdc4fd06a2aa486f9935accd16331a 100644 (file)
@@ -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);
   }
-
 }