]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
2101. [bug] OpenSSL version checks were not quite right.
authorMark Andrews <marka@isc.org>
Tue, 7 Nov 2006 21:28:45 +0000 (21:28 +0000)
committerMark Andrews <marka@isc.org>
Tue, 7 Nov 2006 21:28:45 +0000 (21:28 +0000)
                        [RT #16476]

CHANGES
lib/dns/opensslrsa_link.c

diff --git a/CHANGES b/CHANGES
index fa9bf990efb2d2ae7ce65e81cb891e397f90fd6a..0a9d96496b7560694a4ca0ff0da1f5dda56b7123 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,6 @@
+2101.  [bug]           OpenSSL version checks were not quite right.
+                       [RT #16476]
+
 2100.  [port]          win32: copy libeay32.dll to Build\Debug.
 
        --- 9.2.7rc3 released ---
index d2aa4f059bbe60039dbf73867f5f463a1001e0ac..289c296cd08909e7ac4fde51c0da82a2e7b2536d 100644 (file)
@@ -17,7 +17,7 @@
 
 /*
  * Principal Author: Brian Wellington
- * $Id: opensslrsa_link.c,v 1.1.2.8 2006/10/11 04:00:01 marka Exp $
+ * $Id: opensslrsa_link.c,v 1.1.2.9 2006/11/07 21:28:45 marka Exp $
  */
 #ifdef OPENSSL
 
@@ -48,7 +48,7 @@
  */
 #ifdef WIN32
 #if !((OPENSSL_VERSION_NUMBER >= 0x009070cfL && \
-       OPENSSL_VERSION_NUMBER < 0x009080000L) || \
+       OPENSSL_VERSION_NUMBER < 0x00908000L) || \
       OPENSSL_VERSION_NUMBER >= 0x0090804fL) 
 #error Please upgrade OpenSSL to 0.9.8d/0.9.7l or greater.
 #endif