diff options
author | 2010-08-12 23:34:38 +0000 | |
---|---|---|
committer | 2010-08-12 23:34:38 +0000 | |
commit | 2626a4b3f78dedaf9042b320f2e12145ddf92f4f (patch) | |
tree | faecc24c88c5027c43fd56c6f45b8ef98ee8714f /usr.bin/ssh/ssh-add.c | |
parent | fix a few warnings. ok jsing (diff) | |
download | wireguard-openbsd-2626a4b3f78dedaf9042b320f2e12145ddf92f4f.tar.xz wireguard-openbsd-2626a4b3f78dedaf9042b320f2e12145ddf92f4f.zip |
OpenSSL_add_all_algorithms is the name of the function we have a man page
for, so use that. ok djm
Diffstat (limited to 'usr.bin/ssh/ssh-add.c')
-rw-r--r-- | usr.bin/ssh/ssh-add.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh-add.c b/usr.bin/ssh/ssh-add.c index f45f90a9fc2..f4b0455d6ee 100644 --- a/usr.bin/ssh/ssh-add.c +++ b/usr.bin/ssh/ssh-add.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh-add.c,v 1.96 2010/05/14 00:47:22 djm Exp $ */ +/* $OpenBSD: ssh-add.c,v 1.97 2010/08/12 23:34:38 tedu Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -364,7 +364,7 @@ main(int argc, char **argv) /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */ sanitise_stdfd(); - SSLeay_add_all_algorithms(); + OpenSSL_add_all_algorithms(); /* At first, get a connection to the authentication agent. */ ac = ssh_get_authentication_connection(); |