mirror of
https://github.com/curl/curl.git
synced 2026-07-15 23:57:20 +03:00
tests/server: replace strerror with sstrerror in socksd
To follow the `errno` -> `SOCKERRNO` update.
Missed from the previous commit.
Follow-up to adcfd4fb3e #16553
This commit is contained in:
parent
adcfd4fb3e
commit
6f1031e9d5
1 changed files with 1 additions and 1 deletions
|
|
@ -744,7 +744,7 @@ static bool incoming(curl_socket_t listenfd)
|
|||
|
||||
if(rc < 0) {
|
||||
logmsg("select() failed with error: (%d) %s",
|
||||
error, strerror(error));
|
||||
error, sstrerror(error));
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue