diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | ssh.c | 10 | ||||
-rw-r--r-- | sshd.c | 4 |
3 files changed, 9 insertions, 10 deletions
@@ -10,6 +10,9 @@ | |||
10 | - markus@cvs.openbsd.org 2004/03/11 08:36:26 | 10 | - markus@cvs.openbsd.org 2004/03/11 08:36:26 |
11 | [sshd.c] | 11 | [sshd.c] |
12 | trim usage; ok deraadt | 12 | trim usage; ok deraadt |
13 | - markus@cvs.openbsd.org 2004/03/11 10:21:17 | ||
14 | [ssh.c sshd.c] | ||
15 | ssh, sshd: sync version output, ok djm | ||
13 | 16 | ||
14 | 20040311 | 17 | 20040311 |
15 | - (djm) [configure.ac] Add standard license to configure.ac; ok ben, dtucker | 18 | - (djm) [configure.ac] Add standard license to configure.ac; ok ben, dtucker |
@@ -911,4 +914,4 @@ | |||
911 | - (djm) Trim deprecated options from INSTALL. Mention UsePAM | 914 | - (djm) Trim deprecated options from INSTALL. Mention UsePAM |
912 | - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu | 915 | - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu |
913 | 916 | ||
914 | $Id: ChangeLog,v 1.3292 2004/03/21 22:35:21 djm Exp $ | 917 | $Id: ChangeLog,v 1.3293 2004/03/21 22:36:00 djm Exp $ |
@@ -40,7 +40,7 @@ | |||
40 | */ | 40 | */ |
41 | 41 | ||
42 | #include "includes.h" | 42 | #include "includes.h" |
43 | RCSID("$OpenBSD: ssh.c,v 1.208 2004/03/10 09:45:06 markus Exp $"); | 43 | RCSID("$OpenBSD: ssh.c,v 1.209 2004/03/11 10:21:17 markus Exp $"); |
44 | 44 | ||
45 | #include <openssl/evp.h> | 45 | #include <openssl/evp.h> |
46 | #include <openssl/err.h> | 46 | #include <openssl/err.h> |
@@ -310,12 +310,8 @@ again: | |||
310 | } | 310 | } |
311 | /* fallthrough */ | 311 | /* fallthrough */ |
312 | case 'V': | 312 | case 'V': |
313 | fprintf(stderr, | 313 | fprintf(stderr, "%s, %s\n", |
314 | "%s, SSH protocols %d.%d/%d.%d, %s\n", | 314 | SSH_VERSION, SSLeay_version(SSLEAY_VERSION)); |
315 | SSH_VERSION, | ||
316 | PROTOCOL_MAJOR_1, PROTOCOL_MINOR_1, | ||
317 | PROTOCOL_MAJOR_2, PROTOCOL_MINOR_2, | ||
318 | SSLeay_version(SSLEAY_VERSION)); | ||
319 | if (opt == 'V') | 315 | if (opt == 'V') |
320 | exit(0); | 316 | exit(0); |
321 | break; | 317 | break; |
@@ -42,7 +42,7 @@ | |||
42 | */ | 42 | */ |
43 | 43 | ||
44 | #include "includes.h" | 44 | #include "includes.h" |
45 | RCSID("$OpenBSD: sshd.c,v 1.289 2004/03/11 08:36:26 markus Exp $"); | 45 | RCSID("$OpenBSD: sshd.c,v 1.290 2004/03/11 10:21:17 markus Exp $"); |
46 | 46 | ||
47 | #include <openssl/dh.h> | 47 | #include <openssl/dh.h> |
48 | #include <openssl/bn.h> | 48 | #include <openssl/bn.h> |
@@ -763,7 +763,7 @@ drop_connection(int startups) | |||
763 | static void | 763 | static void |
764 | usage(void) | 764 | usage(void) |
765 | { | 765 | { |
766 | fprintf(stderr, "sshd version %s, %s\n", | 766 | fprintf(stderr, "%s, %s\n", |
767 | SSH_VERSION, SSLeay_version(SSLEAY_VERSION)); | 767 | SSH_VERSION, SSLeay_version(SSLEAY_VERSION)); |
768 | fprintf(stderr, | 768 | fprintf(stderr, |
769 | "usage: sshd [-46Ddeiqt] [-b bits] [-f config_file] [-g login_grace_time]\n" | 769 | "usage: sshd [-46Ddeiqt] [-b bits] [-f config_file] [-g login_grace_time]\n" |