aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2023-11-24 15:14:28 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2023-11-24 16:08:25 +0300
commit0ddd04b4fccdc76de1c1c6de4c1c44e0c737af07 (patch)
tree79d8565c069a1d62bd424933f0886658746c311c
parenta19df909da3adad4dc78dd086e315ad005c484bf (diff)
downloadlibmicrohttpd-0ddd04b4fccdc76de1c1c6de4c1c44e0c737af07.tar.gz
libmicrohttpd-0ddd04b4fccdc76de1c1c6de4c1c44e0c737af07.zip
mhd_sockets: fixed error code for W32
The code was used only in tests and was not relevant for W32.
-rw-r--r--src/microhttpd/mhd_sockets.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/microhttpd/mhd_sockets.h b/src/microhttpd/mhd_sockets.h
index 3b953c3f..02e3ebec 100644
--- a/src/microhttpd/mhd_sockets.h
+++ b/src/microhttpd/mhd_sockets.h
@@ -648,7 +648,7 @@ typedef int MHD_SCKT_SEND_SIZE_;
648# define MHD_SCKT_EACCESS_ WSAEACCES 648# define MHD_SCKT_EACCESS_ WSAEACCES
649# define MHD_SCKT_ENETDOWN_ WSAENETDOWN 649# define MHD_SCKT_ENETDOWN_ WSAENETDOWN
650# define MHD_SCKT_EALREADY_ WSAEALREADY 650# define MHD_SCKT_EALREADY_ WSAEALREADY
651# define MHD_SCKT_EINPROGRESS_ WSAEACCES 651# define MHD_SCKT_EINPROGRESS_ WSAEINPROGRESS
652# define MHD_SCKT_EISCONN_ WSAEISCONN 652# define MHD_SCKT_EISCONN_ WSAEISCONN
653#endif 653#endif
654 654