From: Richard Levitte Date: Sat, 29 Jun 2002 22:04:09 +0000 (+0000) Subject: Do not define crypt() on OpenBSD. Notified by Bob Beck of OpenBSD. X-Git-Tag: OpenSSL_0_9_6e~26^2~25 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=40c5cae24a959832acb3a4a25959a88ab1a44b86;p=oweals%2Fopenssl.git Do not define crypt() on OpenBSD. Notified by Bob Beck of OpenBSD. --- 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