From: dtucker Date: Fri, 17 Jun 2005 11:15:20 +0000 (+0000) Subject: - (dtucker) [cipher.c openbsd-compat/openbsd-compat.h X-Git-Tag: V_4_2_P1~64 X-Git-Url: http://andersk.mit.edu/gitweb/openssh.git/commitdiff_plain/601b831dc3bbd4d76f7a7574c46e125f5d4f44b4 - (dtucker) [cipher.c openbsd-compat/openbsd-compat.h openbsd-compat/openssl-compat.c] only include openssl compat stuff where it's needed as it can cause conflicts elsewhere (eg xcrypt.c). Found by and ok tim@ ---------------------------------------------------------------------- automatically CVS: CVS: Committing in . CVS: CVS: Modified Files: ---------------------------------------------------------------------- --- diff --git a/ChangeLog b/ChangeLog index b8c16736..ac6328af 100644 --- a/ChangeLog +++ b/ChangeLog @@ -17,6 +17,10 @@ make this -Wsign-compare clean; ok avsm@ markus@ NB. auth1.c changes not committed yet (conflicts with uncommitted sync) NB2. more work may be needed to make portable Wsign-compare clean + - (dtucker) [cipher.c openbsd-compat/openbsd-compat.h + openbsd-compat/openssl-compat.c] only include openssl compat stuff where + it's needed as it can cause conflicts elsewhere (eg xcrypt.c). Found by + and ok tim@ 20050616 - (djm) OpenBSD CVS Sync diff --git a/cipher.c b/cipher.c index 20d0a80c..fc1e2ae1 100644 --- a/cipher.c +++ b/cipher.c @@ -43,6 +43,9 @@ RCSID("$OpenBSD: cipher.c,v 1.76 2005/06/17 02:44:32 djm Exp $"); #include +/* compatibility with old or broken OpenSSL versions */ +#include "openbsd-compat/openssl-compat.h" + extern const EVP_CIPHER *evp_ssh1_bf(void); extern const EVP_CIPHER *evp_ssh1_3des(void); extern void ssh1_3des_iv(EVP_CIPHER_CTX *, int, u_char *, int); diff --git a/openbsd-compat/openbsd-compat.h b/openbsd-compat/openbsd-compat.h index 899ca41e..8f55193b 100644 --- a/openbsd-compat/openbsd-compat.h +++ b/openbsd-compat/openbsd-compat.h @@ -168,9 +168,6 @@ char *shadow_pw(struct passwd *pw); /* rfc2553 socket API replacements */ #include "fake-rfc2553.h" -/* compatibility with old or broken OpenSSL versions */ -#include "openssl-compat.h" - /* Routines for a single OS platform */ #include "bsd-cray.h" #include "bsd-cygwin_util.h" diff --git a/openbsd-compat/openssl-compat.c b/openbsd-compat/openssl-compat.c index 89bd250c..957be810 100644 --- a/openbsd-compat/openssl-compat.c +++ b/openbsd-compat/openssl-compat.c @@ -16,9 +16,11 @@ * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -#define SSH_DONT_REDEF_EVP #include "includes.h" +#define SSH_DONT_REDEF_EVP +#include "openssl-compat.h" + #ifdef SSH_OLD_EVP int ssh_EVP_CipherInit(EVP_CIPHER_CTX *evp, const EVP_CIPHER *type,