diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2000-05-30 17:32:07 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2000-05-30 17:32:07 +0000 |
commit | 6b3a2539a9f11e8435c41e8e81e3fe3ee82a6beb (patch) | |
tree | 48cf91c52c48c1cd08533e0609d65ee8df797ea2 /usr.bin | |
parent | aeff55e1ea1e6b6da7eacebb25c6395b231e8cad (diff) |
remove dependency on openssl-0.9.5a; green@FreeBSD.org via kris@FreeBSD.org
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/ssh/ssh-keygen.c | 4 | ||||
-rw-r--r-- | usr.bin/ssh/ssh.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/ssh/ssh-keygen.c b/usr.bin/ssh/ssh-keygen.c index 9129c70a8ec..874acfe92d6 100644 --- a/usr.bin/ssh/ssh-keygen.c +++ b/usr.bin/ssh/ssh-keygen.c @@ -7,7 +7,7 @@ */ #include "includes.h" -RCSID("$Id: ssh-keygen.c,v 1.25 2000/05/08 18:23:07 markus Exp $"); +RCSID("$Id: ssh-keygen.c,v 1.26 2000/05/30 17:32:06 markus Exp $"); #include <openssl/evp.h> #include <openssl/pem.h> @@ -516,7 +516,7 @@ main(int ac, char **av) extern int optind; extern char *optarg; - OpenSSL_add_all_algorithms(); + SSLeay_add_all_algorithms(); /* we need this for the home * directory. */ pw = getpwuid(getuid()); 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); |