summaryrefslogtreecommitdiffstats
path: root/crypto/bio/bss_log.c
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>2000-03-10 23:45:51 +0000
committerUlf Möller <ulf@openssl.org>2000-03-10 23:45:51 +0000
commitf95808e8a5dde9699a852c0376508f5472fff8c6 (patch)
tree2c5cd8adfc163577863a1887ffe95338e4740f99 /crypto/bio/bss_log.c
parentb70dcdfc3f727b77bbebf3d4abecf6fb30e03409 (diff)
NO_SYSLOG is defined for MSDOS anyway. just don't include the Unix
header...
Diffstat (limited to 'crypto/bio/bss_log.c')
-rw-r--r--crypto/bio/bss_log.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/crypto/bio/bss_log.c b/crypto/bio/bss_log.c
index 8d08f86c27..50863fb9b2 100644
--- a/crypto/bio/bss_log.c
+++ b/crypto/bio/bss_log.c
@@ -68,14 +68,12 @@
#if defined(WIN32)
# include <process.h>
-#elif defined (MSDOS)
-# define NO_SYSLOG
#elif defined(VMS) || defined(__VMS)
# include <opcdef.h>
# include <descrip.h>
#elif defined(__ultrix)
# include <sys/syslog.h>
-#else
+#elif !defined(MSDOS) /* Unix */
# include <syslog.h>
#endif