forked from pool/openssh
Marcus Meissner
9d7406f5e6
- Update to version 6.0, large list of changes, seen http://www.openssh.org/txt/release-6.0 for detail. OBS-URL: https://build.opensuse.org/request/show/122649 OBS-URL: https://build.opensuse.org/package/show/network/openssh?expand=0&rev=27
18 lines
604 B
Diff
18 lines
604 B
Diff
--- entropy.c.orig
|
|
+++ entropy.c
|
|
@@ -216,12 +216,13 @@ seed_rng(void)
|
|
* allow 1.0.1 to work with 1.0.0). Going backwards is only allowed
|
|
* within a patch series.
|
|
*/
|
|
+#if 0
|
|
u_long version_mask = SSLeay() >= 0x1000000f ? ~0xffff0L : ~0xff0L;
|
|
if (((SSLeay() ^ OPENSSL_VERSION_NUMBER) & version_mask) ||
|
|
(SSLeay() >> 12) < (OPENSSL_VERSION_NUMBER >> 12))
|
|
fatal("OpenSSL version mismatch. Built against %lx, you "
|
|
"have %lx", (u_long)OPENSSL_VERSION_NUMBER, SSLeay());
|
|
-
|
|
+#endif
|
|
#ifndef OPENSSL_PRNG_ONLY
|
|
if (RAND_status() == 1) {
|
|
debug3("RNG is ready, skipping seeding");
|