On 20.11.18 16:29, Dale R. Worley wrote: > "Tony Lewis" <[email protected]> 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
