aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo Buehler <tb@openbsd.org>2025-05-10 22:05:42 +0200
committerTheo Buehler <tb@openbsd.org>2025-05-10 22:05:42 +0200
commitf8fafd5e8855e42a7046f9d22c8ff06e6c7410ae (patch)
tree34ed14369853d91de36eeab7f2f56678f42a299c
parentbc15cfdcc15790670e7195115192b966dac82b42 (diff)
parent8f6cbc8987d415c4f5817588973ad9bb178b153b (diff)
downloadportable-f8fafd5e8855e42a7046f9d22c8ff06e6c7410ae.tar.gz
portable-f8fafd5e8855e42a7046f9d22c8ff06e6c7410ae.tar.bz2
portable-f8fafd5e8855e42a7046f9d22c8ff06e6c7410ae.zip
Land #1163 - Fix build on Windows
-rw-r--r--crypto/compat/b_win.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/crypto/compat/b_win.c b/crypto/compat/b_win.c
index e261cd2..45af839 100644
--- a/crypto/compat/b_win.c
+++ b/crypto/compat/b_win.c
@@ -8,7 +8,8 @@
8#include <ws2tcpip.h> 8#include <ws2tcpip.h>
9 9
10#include <openssl/bio.h> 10#include <openssl/bio.h>
11#include <openssl/err.h> 11
12#include "err_local.h"
12 13
13int 14int
14BIO_sock_init(void) 15BIO_sock_init(void)
@@ -29,7 +30,7 @@ BIO_sock_init(void)
29 } 30 }
30 wsa_init_done = 1; 31 wsa_init_done = 1;
31 } 32 }
32 return (1); 33 return (1);
33} 34}
34 35
35void 36void