summaryrefslogtreecommitdiffstats
path: root/lib/libssl/src/crypto/err/err.c
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2014-04-13 23:31:36 +0000
committerderaadt <deraadt@openbsd.org>2014-04-13 23:31:36 +0000
commit9ee38ff1a26b740c31575c2d831852c20a6cf75f (patch)
tree6e07d809c567255896d58f75eb645a07412f94af /lib/libssl/src/crypto/err/err.c
parentcompress code by turning four line comments into one line comments. (diff)
downloadwireguard-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.c2
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"},