diff options
author | 2010-08-31 12:33:38 +0000 | |
---|---|---|
committer | 2010-08-31 12:33:38 +0000 | |
commit | 24f628ab7f0deb0d4880b7a7d8a0fce06dd11f77 (patch) | |
tree | deb9af33318581414628a1f743584ca17ea3ce73 /usr.bin/ssh/ssh.c | |
parent | tests for ECDSA keys (diff) | |
download | wireguard-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.c')
-rw-r--r-- | usr.bin/ssh/ssh.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh.c b/usr.bin/ssh/ssh.c index d03f0ccf657..dbdc3882acc 100644 --- a/usr.bin/ssh/ssh.c +++ b/usr.bin/ssh/ssh.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh.c,v 1.349 2010/08/31 11:54:45 djm Exp $ */ +/* $OpenBSD: ssh.c,v 1.350 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 @@ -586,7 +586,7 @@ main(int ac, char **av) if (!host) usage(); - SSLeay_add_all_algorithms(); + OpenSSL_add_all_algorithms(); ERR_load_crypto_strings(); /* Initialize the command to execute on remote host. */ |