summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/ssh.c
diff options
context:
space:
mode:
authormarkus <markus@openbsd.org>2000-05-30 17:32:06 +0000
committermarkus <markus@openbsd.org>2000-05-30 17:32:06 +0000
commitbe178b22f4f57ae1ebbde9832a62b86d48e7ab54 (patch)
treefbd1d78142b9d2b70a670e9ce014da122e833132 /usr.bin/ssh/ssh.c
parentdon't panic if mkdtemp fails for authfwd; jkb@yahoo-inc.com via kris@FreeBSD.org (diff)
downloadwireguard-openbsd-be178b22f4f57ae1ebbde9832a62b86d48e7ab54.tar.xz
wireguard-openbsd-be178b22f4f57ae1ebbde9832a62b86d48e7ab54.zip
remove dependency on openssl-0.9.5a; green@FreeBSD.org via kris@FreeBSD.org
Diffstat (limited to 'usr.bin/ssh/ssh.c')
-rw-r--r--usr.bin/ssh/ssh.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh.c b/usr.bin/ssh/ssh.c
index e4d1f09a452..f343b41a7b6 100644
--- a/usr.bin/ssh/ssh.c
+++ b/usr.bin/ssh/ssh.c
@@ -11,7 +11,7 @@
*/
#include "includes.h"
-RCSID("$Id: ssh.c,v 1.53 2000/05/29 20:20:46 markus Exp $");
+RCSID("$Id: ssh.c,v 1.54 2000/05/30 17:32:06 markus Exp $");
#include <openssl/evp.h>
#include <openssl/dsa.h>
@@ -427,7 +427,7 @@ main(int ac, char **av)
if (!host)
usage();
- OpenSSL_add_all_algorithms();
+ SSLeay_add_all_algorithms();
/* Initialize the command to execute on remote host. */
buffer_init(&command);