diff options
| author | 2001-02-17 23:28:58 +0000 | |
|---|---|---|
| committer | 2001-02-17 23:28:58 +0000 | |
| commit | 9566e947a46e97df1f1dbd22523c84f70c10d29d (patch) | |
| tree | ace71e6d713232ea2fec505b113e8333d96a4ddf | |
| parent | spelling and grammar (diff) | |
| download | wireguard-openbsd-9566e947a46e97df1f1dbd22523c84f70c10d29d.tar.xz wireguard-openbsd-9566e947a46e97df1f1dbd22523c84f70c10d29d.zip | |
cleanup -V output; noted by millert
| -rw-r--r-- | usr.bin/ssh/ssh.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/usr.bin/ssh/ssh.c b/usr.bin/ssh/ssh.c index ec76e060310..23b98a43477 100644 --- a/usr.bin/ssh/ssh.c +++ b/usr.bin/ssh/ssh.c @@ -39,7 +39,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: ssh.c,v 1.95 2001/02/11 12:59:25 markus Exp $"); +RCSID("$OpenBSD: ssh.c,v 1.96 2001/02/17 23:28:58 deraadt Exp $"); #include <openssl/evp.h> #include <openssl/err.h> @@ -378,11 +378,12 @@ main(int ac, char **av) } /* fallthrough */ case 'V': - fprintf(stderr, "SSH Version %s, protocol versions %d.%d/%d.%d.\n", + fprintf(stderr, + "%s, SSH protocols %d.%d/%d.%d, OpenSSL 0x%8.8lx\n", SSH_VERSION, PROTOCOL_MAJOR_1, PROTOCOL_MINOR_1, - PROTOCOL_MAJOR_2, PROTOCOL_MINOR_2); - fprintf(stderr, "Compiled with SSL (0x%8.8lx).\n", SSLeay()); + PROTOCOL_MAJOR_2, PROTOCOL_MINOR_2, + SSLeay()); if (opt == 'V') exit(0); break; |
