summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/ssh-agent.c
diff options
context:
space:
mode:
authortedu <tedu@openbsd.org>2010-08-12 23:34:38 +0000
committertedu <tedu@openbsd.org>2010-08-12 23:34:38 +0000
commit2626a4b3f78dedaf9042b320f2e12145ddf92f4f (patch)
treefaecc24c88c5027c43fd56c6f45b8ef98ee8714f /usr.bin/ssh/ssh-agent.c
parentfix a few warnings. ok jsing (diff)
downloadwireguard-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-agent.c')
-rw-r--r--usr.bin/ssh/ssh-agent.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh-agent.c b/usr.bin/ssh/ssh-agent.c
index 327e3e01d4f..bf11e4ff442 100644
--- a/usr.bin/ssh/ssh-agent.c
+++ b/usr.bin/ssh/ssh-agent.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ssh-agent.c,v 1.166 2010/04/16 01:47:26 djm Exp $ */
+/* $OpenBSD: ssh-agent.c,v 1.167 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
@@ -1068,7 +1068,7 @@ main(int ac, char **av)
setegid(getgid());
setgid(getgid());
- SSLeay_add_all_algorithms();
+ OpenSSL_add_all_algorithms();
while ((ch = getopt(ac, av, "cdksa:t:")) != -1) {
switch (ch) {