diff options
author | Damien Miller <djm@mindrot.org> | 2010-09-10 03:12:09 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2010-09-10 03:12:09 +0200 |
commit | 4314c2b5489da5af3b70c440fcd2c44ddc4745a8 (patch) | |
tree | a17b3159d949af9e3739ec3828d349be97015070 /sshd.c | |
parent | - (dtucker) [openbsd-compat/port-linux.c] Check is_selinux_enabled for exact (diff) | |
download | openssh-4314c2b5489da5af3b70c440fcd2c44ddc4745a8.tar.xz openssh-4314c2b5489da5af3b70c440fcd2c44ddc4745a8.zip |
- 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 'sshd.c')
-rw-r--r-- | sshd.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $OpenBSD: sshd.c,v 1.378 2010/08/31 11:54:45 djm Exp $ */ +/* $OpenBSD: sshd.c,v 1.379 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 @@ -1467,7 +1467,7 @@ main(int ac, char **av) else closefrom(REEXEC_DEVCRYPTO_RESERVED_FD); - SSLeay_add_all_algorithms(); + OpenSSL_add_all_algorithms(); /* * Force logging to stderr until we have loaded the private host |