summaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2002-06-29 22:04:09 +0000
committerRichard Levitte <levitte@openssl.org>2002-06-29 22:04:09 +0000
commit40c5cae24a959832acb3a4a25959a88ab1a44b86 (patch)
treec4c95ed65d2613b417d61d2e1be66dc5847f77c6 /crypto
parentcce9396dc9210a45554db235c26814c9e07dda35 (diff)
Do not define crypt() on OpenBSD. Notified by Bob Beck of OpenBSD.
Diffstat (limited to 'crypto')
-rw-r--r--crypto/des/des_old.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/des/des_old.h b/crypto/des/des_old.h
index 04c78a1ce9..51b987422a 100644
--- a/crypto/des/des_old.h
+++ b/crypto/des/des_old.h
@@ -173,7 +173,7 @@ typedef struct _ossl_old_des_ks_struct
DES_fcrypt((b),(s),(r))
#define des_crypt(b,s)\
DES_crypt((b),(s))
-#if !defined(PERL5) && !defined(__FreeBSD__) && !defined(NeXT)
+#if !defined(PERL5) && !defined(__FreeBSD__) && !defined(NeXT) && !defined(__OpenBSD__)
#define crypt(b,s)\
DES_crypt((b),(s))
#endif