diff options
author | 2014-03-30 22:37:41 +0000 | |
---|---|---|
committer | 2014-03-30 22:37:41 +0000 | |
commit | 43143e89d5a4b4c2bbee5de38830d592b2f5d1b5 (patch) | |
tree | 90479626bdd745b1b6846f50fa524cd3f1ecf41f | |
parent | Eliminates struct pcred by moving the real and saved ugids into (diff) | |
download | wireguard-openbsd-43143e89d5a4b4c2bbee5de38830d592b2f5d1b5.tar.xz wireguard-openbsd-43143e89d5a4b4c2bbee5de38830d592b2f5d1b5.zip |
SSLeay_add_ssl_algorithms() is just a #define for SSL_library_init(), so
kill the former. ok guenther@ sthen@
-rw-r--r-- | usr.bin/ftp/fetch.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/ftp/fetch.c b/usr.bin/ftp/fetch.c index 9b91c1722f0..b44114cbb34 100644 --- a/usr.bin/ftp/fetch.c +++ b/usr.bin/ftp/fetch.c @@ -1,4 +1,4 @@ -/* $OpenBSD: fetch.c,v 1.114 2014/03/02 17:57:18 tedu Exp $ */ +/* $OpenBSD: fetch.c,v 1.115 2014/03/30 22:37:41 jca Exp $ */ /* $NetBSD: fetch.c,v 1.14 1997/08/18 10:20:20 lukem Exp $ */ /*- @@ -605,7 +605,6 @@ again: } SSL_library_init(); SSL_load_error_strings(); - SSLeay_add_ssl_algorithms(); ssl_ctx = SSL_CTX_new(SSLv23_client_method()); if (ssl_ctx == NULL) { ERR_print_errors_fp(ttyout); |