* Don't second-guess the Debian dependencies by erroring out when a
different version of OpenSSL is found.
-- Steve Langasek <vorlon@debian.org> Sun, 21 Oct 2007 00:58:07 -0700
unchanged:
Index: ntp-4.2.6+dfsg/libntp/ssl_init.c
===================================================================
--- ntp-4.2.6+dfsg.orig/libntp/ssl_init.c 2009-12-23 20:53:30.000000000 +0000
+++ ntp-4.2.6+dfsg/libntp/ssl_init.c 2009-12-23 20:54:51.000000000 +0000
@@ -35,15 +35,6 @@
void
ssl_check_version(void)
{
- if ((SSLeay() ^ OPENSSL_VERSION_NUMBER) & ~0xff0L) {
- msyslog(LOG_WARNING,
- "OpenSSL version mismatch. Built against %lx, you have %lx",
- OPENSSL_VERSION_NUMBER, SSLeay());
- fprintf(stderr,
- "OpenSSL version mismatch. Built against %lx, you have %lx\n",
- OPENSSL_VERSION_NUMBER, SSLeay());
- }
-
INIT_SSL();
}
#endif /* OPENSSL */