aboutsummaryrefslogtreecommitdiff
path: root/crypto/openssh
diff options
context:
space:
mode:
authorEd Maste <emaste@FreeBSD.org>2020-07-15 18:49:00 +0000
committerEd Maste <emaste@FreeBSD.org>2020-07-15 18:49:00 +0000
commitea64ebd08c80e4c0a7b8ed207caba45e9374908e (patch)
treea5e1d085d6618f93d3ac65149f8bfb27be3ef625 /crypto/openssh
parentdceff013b2ae76096c9025ef1deb42884c2b230b (diff)
Notes
Diffstat (limited to 'crypto/openssh')
-rw-r--r--crypto/openssh/sshd.c2
-rw-r--r--crypto/openssh/version.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/crypto/openssh/sshd.c b/crypto/openssh/sshd.c
index 179646491c17..06fa7b8de339 100644
--- a/crypto/openssh/sshd.c
+++ b/crypto/openssh/sshd.c
@@ -1749,7 +1749,7 @@ main(int ac, char **av)
debug("sshd version %s, %s", SSH_VERSION,
#ifdef WITH_OPENSSL
- OpenSSL_version(SSLEAY_VERSION)
+ OpenSSL_version(OPENSSL_VERSION)
#else
"without OpenSSL"
#endif
diff --git a/crypto/openssh/version.h b/crypto/openssh/version.h
index f8bceb1c680e..9dbaf16e7192 100644
--- a/crypto/openssh/version.h
+++ b/crypto/openssh/version.h
@@ -9,7 +9,7 @@
#define SSH_VERSION_FREEBSD "FreeBSD-20200214"
#ifdef WITH_OPENSSL
-#define OPENSSL_VERSION_STRING OpenSSL_version(SSLEAY_VERSION)
+#define OPENSSL_VERSION_STRING OpenSSL_version(OPENSSL_VERSION)
#else
#define OPENSSL_VERSION_STRING "without OpenSSL"
#endif