summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/ssh-add.c
diff options
context:
space:
mode:
authordjm <djm@openbsd.org>2010-08-31 12:33:38 +0000
committerdjm <djm@openbsd.org>2010-08-31 12:33:38 +0000
commit24f628ab7f0deb0d4880b7a7d8a0fce06dd11f77 (patch)
treedeb9af33318581414628a1f743584ca17ea3ce73 /usr.bin/ssh/ssh-add.c
parenttests for ECDSA keys (diff)
downloadwireguard-openbsd-24f628ab7f0deb0d4880b7a7d8a0fce06dd11f77.tar.xz
wireguard-openbsd-24f628ab7f0deb0d4880b7a7d8a0fce06dd11f77.zip
reintroduce commit from tedu@, which I pulled out for release engineering:
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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh-add.c b/usr.bin/ssh/ssh-add.c
index 8307b55a45d..fe89da13b57 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.99 2010/08/31 11:54:45 djm Exp $ */
+/* $OpenBSD: ssh-add.c,v 1.100 2010/08/31 12:33:38 djm Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -365,7 +365,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();