From: Viktor Szakats Date: Tue, 4 Mar 2025 17:32:51 +0000 (+0100) Subject: tests/server: replace `strerror` with `sstrerror` in socksd X-Git-Tag: curl-8_13_0~277 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6f1031e9d52138555a8191b146e0a3f47997d5be;p=thirdparty%2Fcurl.git tests/server: replace `strerror` with `sstrerror` in socksd To follow the `errno` -> `SOCKERRNO` update. Missed from the previous commit. Follow-up to adcfd4fb3e9be1de0e506728066bea2aaa53c394 #16553 --- diff --git a/tests/server/socksd.c b/tests/server/socksd.c index 83e8607468..58156e45b9 100644 --- a/tests/server/socksd.c +++ b/tests/server/socksd.c @@ -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; }