Merge branch 'non-ascii' into 'master'

Replace non-ASCII character in error message

See merge request openconnect/ocserv!469
This commit is contained in:
Dimitri Papadopoulos Orfanos
2025-11-21 21:03:22 +01:00

View File

@@ -1930,7 +1930,7 @@ static void set_socket_timeout(worker_st *ws, int fd)
int e = errno;
oclog(ws, LOG_DEBUG, "setsockopt(%s, SO_RCVTIMEO) failed: %s",
(fd == ws->conn_fd) ? "ΤCP" : "UDP", strerror(e));
(fd == ws->conn_fd) ? "TCP" : "UDP", strerror(e));
}
}