mirror of
https://github.com/curl/curl.git
synced 2026-07-24 12:27:16 +03:00
lib: remove two instances of "only only" messages
Fixes #13551 Reported-by: Lucas Nussbaum Closes #13552
This commit is contained in:
parent
428579f5d1
commit
848c104639
2 changed files with 2 additions and 2 deletions
|
|
@ -1970,7 +1970,7 @@ static CURLcode cr_mime_read(struct Curl_easy *data,
|
|||
switch(nread) {
|
||||
case 0:
|
||||
if((ctx->total_len >= 0) && (ctx->read_len < ctx->total_len)) {
|
||||
failf(data, "client mime read EOF fail, only "
|
||||
failf(data, "client mime read EOF fail, "
|
||||
"only %"CURL_FORMAT_CURL_OFF_T"/%"CURL_FORMAT_CURL_OFF_T
|
||||
" of needed bytes read", ctx->read_len, ctx->total_len);
|
||||
return CURLE_READ_ERROR;
|
||||
|
|
|
|||
|
|
@ -667,7 +667,7 @@ static CURLcode cr_in_read(struct Curl_easy *data,
|
|||
switch(nread) {
|
||||
case 0:
|
||||
if((ctx->total_len >= 0) && (ctx->read_len < ctx->total_len)) {
|
||||
failf(data, "client read function EOF fail, only "
|
||||
failf(data, "client read function EOF fail, "
|
||||
"only %"CURL_FORMAT_CURL_OFF_T"/%"CURL_FORMAT_CURL_OFF_T
|
||||
" of needed bytes read", ctx->read_len, ctx->total_len);
|
||||
return CURLE_READ_ERROR;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue