From 9c68f24cfc5c25fccbcf4324072b0cea1c334121 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Mon, 19 Feb 2024 20:33:13 +0100 Subject: [PATCH] net/SocketError: fix typo Whoops. This function has never been used. --- src/net/SocketError.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/net/SocketError.hxx b/src/net/SocketError.hxx index c45de8451..4c4ab9d81 100644 --- a/src/net/SocketError.hxx +++ b/src/net/SocketError.hxx @@ -101,7 +101,7 @@ IsSocketErrorAcceptWouldBlock(socket_error_t code) noexcept } constexpr bool -IsSocketErrorInterruped(socket_error_t code) noexcept +IsSocketErrorInterrupted(socket_error_t code) noexcept { #ifdef _WIN32 return code == WSAEINTR;