diff options
author | djm@openbsd.org <djm@openbsd.org> | 2018-10-23 05:56:35 +0000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2018-10-23 16:57:54 +1100 |
commit | a65784c9f9c5d00cf1a0e235090170abc8d07c73 (patch) | |
tree | b240419cc4884bab109f1b5db1dc4a057e7ca77b /sshd.c | |
parent | c0a35265907533be10ca151ac797f34ae0d68969 (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 'sshd.c')
-rw-r--r-- | sshd.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: sshd.c,v 1.516 2018/09/21 12:23:17 djm Exp $ */ | 1 | /* $OpenBSD: sshd.c,v 1.517 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 |
@@ -917,7 +917,7 @@ usage(void) | |||
917 | fprintf(stderr, "%s, %s\n", | 917 | fprintf(stderr, "%s, %s\n", |
918 | SSH_RELEASE, | 918 | SSH_RELEASE, |
919 | #ifdef WITH_OPENSSL | 919 | #ifdef WITH_OPENSSL |
920 | SSLeay_version(SSLEAY_VERSION) | 920 | OpenSSL_version(OPENSSL_VERSION) |
921 | #else | 921 | #else |
922 | "without OpenSSL" | 922 | "without OpenSSL" |
923 | #endif | 923 | #endif |
@@ -1723,7 +1723,7 @@ main(int ac, char **av) | |||
1723 | 1723 | ||
1724 | debug("sshd version %s, %s", SSH_VERSION, | 1724 | debug("sshd version %s, %s", SSH_VERSION, |
1725 | #ifdef WITH_OPENSSL | 1725 | #ifdef WITH_OPENSSL |
1726 | SSLeay_version(SSLEAY_VERSION) | 1726 | OpenSSL_version(OPENSSL_VERSION) |
1727 | #else | 1727 | #else |
1728 | "without OpenSSL" | 1728 | "without OpenSSL" |
1729 | #endif | 1729 | #endif |