1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 23:58:49 -05:00

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.
This commit is contained in:
Daniel Stenberg 2003-04-03 13:43:15 +00:00
parent 021d406f0c
commit df7bbcfd21

View File

@ -198,8 +198,11 @@ void storerequest(char *reqbuf)
fwrite(reqbuf, 1, strlen(reqbuf), dump); fwrite(reqbuf, 1, strlen(reqbuf), dump);
fclose(dump); fclose(dump);
logmsg("Wrote request input to " REQUEST_DUMP);
}
else {
logmsg("Failed to write request input to " REQUEST_DUMP);
} }
} }