summaryrefslogtreecommitdiffstats
path: root/crypto/bio/b_sock.c
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2003-03-20 23:18:32 +0000
committerRichard Levitte <levitte@openssl.org>2003-03-20 23:18:32 +0000
commit9ba4cc007b3af0b5e893716f8fe44943a5e3b234 (patch)
treea04286657bbc8cf19ada1e8242722b5fe18af0ce /crypto/bio/b_sock.c
parent7b5a6c7a6278eb255ab0f28a72a702bef456f526 (diff)
Make sure we get the definition of OPENSSL_NO_SOCK.
Diffstat (limited to 'crypto/bio/b_sock.c')
-rw-r--r--crypto/bio/b_sock.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/bio/b_sock.c b/crypto/bio/b_sock.c
index 601a14f37c..c501008028 100644
--- a/crypto/bio/b_sock.c
+++ b/crypto/bio/b_sock.c
@@ -56,8 +56,6 @@
* [including the GNU Public Licence.]
*/
-#ifndef OPENSSL_NO_SOCK
-
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
@@ -65,6 +63,8 @@
#include "cryptlib.h"
#include <openssl/bio.h>
+#ifndef OPENSSL_NO_SOCK
+
#ifdef OPENSSL_SYS_WIN16
#define SOCKET_PROTOCOL 0 /* more microsoft stupidity */
#else