[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Bug-wget] Read error (Success)?
From: |
Josef Moellers |
Subject: |
Re: [Bug-wget] Read error (Success)? |
Date: |
Tue, 20 Nov 2018 21:39:00 +0100 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.2.1 |
On 20.11.18 16:29, Dale R. Worley wrote:
> "Tony Lewis" <address@hidden> writes:
>> I'm getting the following error and don't understand what it's trying to
>> tell me:
>>
>> Read error at byte 97430 (Success)
>>
>> What could the server be doing to cause wget to report an error with the
>> details being "Success"?
>
> My guess is that the server's response starts with a message including
> the description "Success".
No, it usually comes from a situation where some error is detected and
the string representing the value of "errno" is output, but "errno" does
not reflect the error and is 0 -> "Success".
Try printing "strerror(0)": "Success".
Josef