diff options
author | Damien Miller <djm@mindrot.org> | 2010-08-31 14:31:37 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2010-08-31 14:31:37 +0200 |
commit | 9b87e795387f748a21cd4d6c26ae57e800c36b54 (patch) | |
tree | 4621f7b21f371052c8bd0def5fa2e405a63e6226 /ssh-agent.c | |
parent | - jmc@cvs.openbsd.org 2010/08/08 19:36:30 (diff) | |
download | openssh-9b87e795387f748a21cd4d6c26ae57e800c36b54.tar.xz openssh-9b87e795387f748a21cd4d6c26ae57e800c36b54.zip |
- tedu@cvs.openbsd.org 2010/08/12 23:34:39
[ssh-add.c ssh-agent.c ssh-keygen.c ssh-keysign.c ssh.c sshd.c]
OpenSSL_add_all_algorithms is the name of the function we have a man page
for, so use that. ok djm
Diffstat (limited to 'ssh-agent.c')
-rw-r--r-- | ssh-agent.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ssh-agent.c b/ssh-agent.c index 2c0e28696..d5690e0c5 100644 --- a/ssh-agent.c +++ b/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 @@ -1092,7 +1092,7 @@ main(int ac, char **av) prctl(PR_SET_DUMPABLE, 0); #endif - SSLeay_add_all_algorithms(); + OpenSSL_add_all_algorithms(); __progname = ssh_get_progname(av[0]); init_rng(); |