summaryrefslogtreecommitdiff
path: root/ssh.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2010-09-10 11:12:09 +1000
committerDamien Miller <djm@mindrot.org>2010-09-10 11:12:09 +1000
commit4314c2b5489da5af3b70c440fcd2c44ddc4745a8 (patch)
treea17b3159d949af9e3739ec3828d349be97015070 /ssh.c
parent50e3bab2421e41cbce9093c5047298ed7ad730cb (diff)
- djm@cvs.openbsd.org 2010/08/31 12:33:38
[ssh-add.c ssh-agent.c ssh-keygen.c ssh-keysign.c ssh.c sshd.c] 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 'ssh.c')
-rw-r--r--ssh.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ssh.c b/ssh.c
index 1cdfc58e3..e5b643258 100644
--- a/ssh.c
+++ b/ssh.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssh.c,v 1.349 2010/08/31 11:54:45 djm Exp $ */ 1/* $OpenBSD: ssh.c,v 1.350 2010/08/31 12:33:38 djm Exp $ */
2/* 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -599,7 +599,7 @@ main(int ac, char **av)
599 if (!host) 599 if (!host)
600 usage(); 600 usage();
601 601
602 SSLeay_add_all_algorithms(); 602 OpenSSL_add_all_algorithms();
603 ERR_load_crypto_strings(); 603 ERR_load_crypto_strings();
604 604
605 /* Initialize the command to execute on remote host. */ 605 /* Initialize the command to execute on remote host. */