diff options
-rw-r--r-- | crypto/compat/b_win.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/compat/b_win.c b/crypto/compat/b_win.c index b8d01ae..e261cd2 100644 --- a/crypto/compat/b_win.c +++ b/crypto/compat/b_win.c | |||
@@ -23,8 +23,8 @@ BIO_sock_init(void) | |||
23 | if (!wsa_init_done) { | 23 | if (!wsa_init_done) { |
24 | if (WSAStartup(version_requested, &wsa_state) != 0) { | 24 | if (WSAStartup(version_requested, &wsa_state) != 0) { |
25 | int err = WSAGetLastError(); | 25 | int err = WSAGetLastError(); |
26 | SYSerr(SYS_F_WSASTARTUP, err); | 26 | SYSerror(err); |
27 | BIOerr(BIO_F_BIO_SOCK_INIT, BIO_R_WSASTARTUP); | 27 | BIOerror(BIO_R_WSASTARTUP); |
28 | return (-1); | 28 | return (-1); |
29 | } | 29 | } |
30 | wsa_init_done = 1; | 30 | wsa_init_done = 1; |