diff options
author | 2015-09-10 16:43:06 +0000 | |
---|---|---|
committer | 2015-09-10 16:43:06 +0000 | |
commit | b1f7c3103a3ee7a1c43ae91ddbad30c378fa9e9a (patch) | |
tree | 3dfafad9f29355daab30b99ae4454f397dbdc3d3 | |
parent | pass a cookie argument to interface input handlers that can be used (diff) | |
download | wireguard-openbsd-b1f7c3103a3ee7a1c43ae91ddbad30c378fa9e9a.tar.xz wireguard-openbsd-b1f7c3103a3ee7a1c43ae91ddbad30c378fa9e9a.zip |
Remove call to CRYPTO_malloc_init(), which does nothing.
-rw-r--r-- | usr.bin/openssl/openssl.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/openssl/openssl.c b/usr.bin/openssl/openssl.c index 6d56b00f961..97321f0cac5 100644 --- a/usr.bin/openssl/openssl.c +++ b/usr.bin/openssl/openssl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: openssl.c,v 1.5 2015/08/22 16:36:05 jsing Exp $ */ +/* $OpenBSD: openssl.c,v 1.6 2015/09/10 16:43:06 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -415,7 +415,6 @@ openssl_startup(void) { signal(SIGPIPE, SIG_IGN); - CRYPTO_malloc_init(); OpenSSL_add_all_algorithms(); SSL_library_init(); SSL_load_error_strings(); |