diff options
author | Daniel Stenberg <daniel@haxx.se> | 2020-06-24 00:57:57 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-06-24 00:57:57 +0200 |
commit | 5fe7aec5c581df018a5686d71e33d8330d93a65a (patch) | |
tree | af4011efae420ee83c1db4289a5c2758d6e73a37 /lib/sendf.c | |
parent | 5991236f2f81d3a47b4e0e3a033d3b89c90417ec (diff) | |
download | curl-5fe7aec5c581df018a5686d71e33d8330d93a65a.tar.gz |
fixup polishedbagder/write-fail-errormsg
Diffstat (limited to 'lib/sendf.c')
-rw-r--r-- | lib/sendf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sendf.c b/lib/sendf.c index 7b6fe61ae..6943fa84e 100644 --- a/lib/sendf.c +++ b/lib/sendf.c @@ -593,7 +593,7 @@ static CURLcode chop_write(struct connectdata *conn, return pausewrite(data, type, ptr, len); } if(wrote != chunklen) { - failf(data, "Failed writing response data to the destination"); + failf(data, "Failure writing output to destination"); return CURLE_WRITE_ERROR; } } |