* obsoletes Get-rid-of-EVP_MD_CTX_FLAG_NON_FIPS_ALLOW.patch
* Multiple bug fixes and improvements. For details, see:
/usr/share/doc/packages/ntp/ChangeLog
http://www.ntp.org/support/securitynotice/4_2_8-series-changelog/
- bsc#1233890: chown refclock device to ntp user on startup.
- ntp-check-argv.patch: Improve the handling of the process name of
the forked-off DNS resolver process.
OBS-URL: https://build.opensuse.org/package/show/network:time/ntp?expand=0&rev=227
23 lines
494 B
Diff
23 lines
494 B
Diff
--- libntp/ssl_init.c.orig
|
|
+++ libntp/ssl_init.c
|
|
@@ -62,19 +62,6 @@ ssl_init(void)
|
|
void
|
|
ssl_check_version(void)
|
|
{
|
|
- u_long v;
|
|
- char * buf;
|
|
-
|
|
- v = OpenSSL_version_num();
|
|
- if ((v ^ OPENSSL_VERSION_NUMBER) & ~0xff0L) {
|
|
- LIB_GETBUF(buf);
|
|
- snprintf(buf, LIB_BUFLENGTH,
|
|
- "OpenSSL version mismatch."
|
|
- "Built against %lx, you have %lx\n",
|
|
- (u_long)OPENSSL_VERSION_NUMBER, v);
|
|
- msyslog(LOG_WARNING, "%s", buf);
|
|
- fputs(buf, stderr);
|
|
- }
|
|
INIT_SSL();
|
|
}
|
|
#endif /* OPENSSL */
|