summaryrefslogtreecommitdiff
path: root/ssh.c
diff options
context:
space:
mode:
authordjm@openbsd.org <djm@openbsd.org>2018-10-23 05:56:35 +0000
committerDamien Miller <djm@mindrot.org>2018-10-23 16:57:54 +1100
commita65784c9f9c5d00cf1a0e235090170abc8d07c73 (patch)
treeb240419cc4884bab109f1b5db1dc4a057e7ca77b /ssh.c
parentc0a35265907533be10ca151ac797f34ae0d68969 (diff)
upstream: refer to OpenSSL not SSLeay;
we're old, but we don't have to act it OpenBSD-Commit-ID: 9ca38d11f8ed19e61a55108d1e892d696cee08ec
Diffstat (limited to 'ssh.c')
-rw-r--r--ssh.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ssh.c b/ssh.c
index 0777c31e4..1e471f5c4 100644
--- a/ssh.c
+++ b/ssh.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssh.c,v 1.494 2018/10/03 06:38:35 djm Exp $ */ 1/* $OpenBSD: ssh.c,v 1.495 2018/10/23 05:56:35 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
@@ -816,7 +816,7 @@ main(int ac, char **av)
816 fprintf(stderr, "%s, %s\n", 816 fprintf(stderr, "%s, %s\n",
817 SSH_RELEASE, 817 SSH_RELEASE,
818#ifdef WITH_OPENSSL 818#ifdef WITH_OPENSSL
819 SSLeay_version(SSLEAY_VERSION) 819 OpenSSL_version(OPENSSL_VERSION)
820#else 820#else
821 "without OpenSSL" 821 "without OpenSSL"
822#endif 822#endif
@@ -1085,7 +1085,7 @@ main(int ac, char **av)
1085 if (debug_flag) 1085 if (debug_flag)
1086 logit("%s, %s", SSH_RELEASE, 1086 logit("%s, %s", SSH_RELEASE,
1087#ifdef WITH_OPENSSL 1087#ifdef WITH_OPENSSL
1088 SSLeay_version(SSLEAY_VERSION) 1088 OpenSSL_version(OPENSSL_VERSION)
1089#else 1089#else
1090 "without OpenSSL" 1090 "without OpenSSL"
1091#endif 1091#endif