summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/ssh.c
diff options
context:
space:
mode:
authordjm <djm@openbsd.org>2018-10-23 05:56:35 +0000
committerdjm <djm@openbsd.org>2018-10-23 05:56:35 +0000
commit701608f28f57409ec3d72347361ad489521d1b35 (patch)
treee535d2319359ae8a98879f4adae4dfe921d2c0d2 /usr.bin/ssh/ssh.c
parentDelay processing of ld.so's own PT_GNU_RELRO section until after environment (diff)
downloadwireguard-openbsd-701608f28f57409ec3d72347361ad489521d1b35.tar.xz
wireguard-openbsd-701608f28f57409ec3d72347361ad489521d1b35.zip
refer to OpenSSL not SSLeay;
we're old, but we don't have to act it
Diffstat (limited to 'usr.bin/ssh/ssh.c')
-rw-r--r--usr.bin/ssh/ssh.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/ssh.c b/usr.bin/ssh/ssh.c
index 3b5ea99148f..c78f55fe384 100644
--- a/usr.bin/ssh/ssh.c
+++ b/usr.bin/ssh/ssh.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ssh.c,v 1.494 2018/10/03 06:38:35 djm Exp $ */
+/* $OpenBSD: ssh.c,v 1.495 2018/10/23 05:56:35 djm Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -792,7 +792,7 @@ main(int ac, char **av)
fprintf(stderr, "%s, %s\n",
SSH_VERSION,
#ifdef WITH_OPENSSL
- SSLeay_version(SSLEAY_VERSION)
+ OpenSSL_version(OPENSSL_VERSION)
#else
"without OpenSSL"
#endif
@@ -1061,7 +1061,7 @@ main(int ac, char **av)
if (debug_flag)
logit("%s, %s", SSH_VERSION,
#ifdef WITH_OPENSSL
- SSLeay_version(SSLEAY_VERSION)
+ OpenSSL_version(OPENSSL_VERSION)
#else
"without OpenSSL"
#endif