Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
* Exporting recvBufNoWait.
* Support for getHostName
[#621](https://github.com/haskell/network/pull/621)
* Fixing the misspelled WSAEACCES error description on Windows.
[#622](https://github.com/haskell/network/pull/622)

## Version 3.2.8.0

Expand Down
2 changes: 1 addition & 1 deletion cbits/winSockErr.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ getWSErrorDescr(int err)
switch (err) {
case WSAEINTR: return "Interrupted function call (WSAEINTR)";
case WSAEBADF: return "bad socket descriptor (WSAEBADF)";
case WSAEACCES: return "Permission denied (WSAEACCESS)";
case WSAEACCES: return "Permission denied (WSAEACCES)";
case WSAEFAULT: return "Bad address (WSAEFAULT)";
case WSAEINVAL: return "Invalid argument (WSAEINVAL)";
case WSAEMFILE: return "Too many open files (WSAEMFILE)";
Expand Down