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:
Viktor Szakats 2025-03-04 18:32:51 +01:00
parent adcfd4fb3e
commit 6f1031e9d5
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201

View file

@ -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;
}