diff options
author | Damien Miller <djm@cvs.openbsd.org> | 2003-05-15 13:52:11 +0000 |
---|---|---|
committer | Damien Miller <djm@cvs.openbsd.org> | 2003-05-15 13:52:11 +0000 |
commit | 348ee6d7826f44917be9a2497c2f617f7fd9cb5e (patch) | |
tree | 097a85e4a51ddea8249e23cf0fa6b4edefc0e9ad /usr.bin | |
parent | 434b0a64531d5e4086a099273444a42481bea3ae (diff) |
Make "ssh -V" print the OpenSSL version in a human readable form. Patch
from Craig Leres (mindrot at ee.lbl.gov); ok markus@
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/ssh/ssh.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/ssh.c b/usr.bin/ssh/ssh.c index 940d08d8d65..9b0b5510c65 100644 --- a/usr.bin/ssh/ssh.c +++ b/usr.bin/ssh/ssh.c @@ -40,7 +40,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: ssh.c,v 1.192 2003/05/11 20:30:25 markus Exp $"); +RCSID("$OpenBSD: ssh.c,v 1.193 2003/05/15 13:52:10 djm Exp $"); #include <openssl/evp.h> #include <openssl/err.h> @@ -344,11 +344,11 @@ again: /* fallthrough */ case 'V': fprintf(stderr, - "%s, SSH protocols %d.%d/%d.%d, OpenSSL 0x%8.8lx\n", + "%s, SSH protocols %d.%d/%d.%d, %s\n", SSH_VERSION, PROTOCOL_MAJOR_1, PROTOCOL_MINOR_1, PROTOCOL_MAJOR_2, PROTOCOL_MINOR_2, - SSLeay()); + SSLeay_version(SSLEAY_VERSION)); if (opt == 'V') exit(0); break; |