diff options
author | 2014-04-13 23:31:36 +0000 | |
---|---|---|
committer | 2014-04-13 23:31:36 +0000 | |
commit | 9ee38ff1a26b740c31575c2d831852c20a6cf75f (patch) | |
tree | 6e07d809c567255896d58f75eb645a07412f94af /lib/libssl/src/crypto/err/err.c | |
parent | compress code by turning four line comments into one line comments. (diff) | |
download | wireguard-openbsd-9ee38ff1a26b740c31575c2d831852c20a6cf75f.tar.xz wireguard-openbsd-9ee38ff1a26b740c31575c2d831852c20a6cf75f.zip |
Remove various horrible socket syscall wrappers, especially SHUTDOWN*
which did shutdown + close, all nasty and surprising. Use the raw
syscalls that everyone knows the behaviour of.
ok beck matthew
Diffstat (limited to 'lib/libssl/src/crypto/err/err.c')
-rw-r--r-- | lib/libssl/src/crypto/err/err.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libssl/src/crypto/err/err.c b/lib/libssl/src/crypto/err/err.c index fcdb244008f..0251248bafd 100644 --- a/lib/libssl/src/crypto/err/err.c +++ b/lib/libssl/src/crypto/err/err.c @@ -165,7 +165,7 @@ static ERR_STRING_DATA ERR_str_functs[]= {ERR_PACK(0,SYS_F_CONNECT,0), "connect"}, {ERR_PACK(0,SYS_F_GETSERVBYNAME,0), "getservbyname"}, {ERR_PACK(0,SYS_F_SOCKET,0), "socket"}, - {ERR_PACK(0,SYS_F_IOCTLSOCKET,0), "ioctlsocket"}, + {ERR_PACK(0,SYS_F_IOCTLSOCKET,0), "ioctl"}, {ERR_PACK(0,SYS_F_BIND,0), "bind"}, {ERR_PACK(0,SYS_F_LISTEN,0), "listen"}, {ERR_PACK(0,SYS_F_ACCEPT,0), "accept"}, |