summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2020-06-24 00:57:57 +0200
committerDaniel Stenberg <daniel@haxx.se>2020-06-24 00:57:57 +0200
commit5fe7aec5c581df018a5686d71e33d8330d93a65a (patch)
treeaf4011efae420ee83c1db4289a5c2758d6e73a37
parent5991236f2f81d3a47b4e0e3a033d3b89c90417ec (diff)
downloadcurl-bagder/write-fail-errormsg.tar.gz
-rw-r--r--lib/sendf.c2
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;
}
}