projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cefa7ce
)
PR: 1858
author
Dr. Stephen Henson
<steve@openssl.org>
Mon, 9 Mar 2009 12:09:03 +0000
(12:09 +0000)
committer
Dr. Stephen Henson
<steve@openssl.org>
Mon, 9 Mar 2009 12:09:03 +0000
(12:09 +0000)
Submitted by: Jurko Gospodneti <jurko.gospodnetic@docte.hr>
Reviewed by: steve@openssl.org
Make OPENSSL_NO_SOCK work.
crypto/bio/bss_sock.c
patch
|
blob
|
history
diff --git
a/crypto/bio/bss_sock.c
b/crypto/bio/bss_sock.c
index 472dd75821c5e65d4b3cfd93fe777a489a7d449b..30c3ceab468cf1ca50a9bb65e8f51dbda014d727 100644
(file)
--- a/
crypto/bio/bss_sock.c
+++ b/
crypto/bio/bss_sock.c
@@
-60,6
+60,9
@@
#include <errno.h>
#define USE_SOCKETS
#include "cryptlib.h"
+
+#ifndef OPENSSL_NO_SOCK
+
#include <openssl/bio.h>
#ifdef WATT32
@@
-300,3
+303,5
@@
int BIO_sock_non_fatal_error(int err)
}
return(0);
}
+
+#endif /* #ifndef OPENSSL_NO_SOCK */