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 /ssh.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 'ssh.c')
-rw-r--r-- | ssh.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 @@ -816,7 +816,7 @@ main(int ac, char **av) fprintf(stderr, "%s, %s\n", SSH_RELEASE, #ifdef WITH_OPENSSL - SSLeay_version(SSLEAY_VERSION) + OpenSSL_version(OPENSSL_VERSION) #else "without OpenSSL" #endif @@ -1085,7 +1085,7 @@ main(int ac, char **av) if (debug_flag) logit("%s, %s", SSH_RELEASE, #ifdef WITH_OPENSSL - SSLeay_version(SSLEAY_VERSION) + OpenSSL_version(OPENSSL_VERSION) #else "without OpenSSL" #endif |