[sshd.c]
     print openssl version, too, several requests; ok henning/djm.
This commit is contained in:
Darren Tucker 2003-10-03 17:57:24 +10:00
parent f391ba6730
commit 4a2505445f
2 changed files with 10 additions and 3 deletions

View File

@ -1,3 +1,9 @@
20031003
- OpenBSD CVS Sync
- markus@cvs.openbsd.org 2003/10/02 10:41:59
[sshd.c]
print openssl version, too, several requests; ok henning/djm.
20031002
- OpenBSD CVS Sync
- markus@cvs.openbsd.org 2003/09/23 20:17:11
@ -1268,4 +1274,4 @@
- Fix sshd BindAddress and -b options for systems using fake-getaddrinfo.
Report from murple@murple.net, diagnosis from dtucker@zip.com.au
$Id: ChangeLog,v 1.3053 2003/10/02 10:07:09 dtucker Exp $
$Id: ChangeLog,v 1.3054 2003/10/03 07:57:24 dtucker Exp $

5
sshd.c
View File

@ -42,7 +42,7 @@
*/
#include "includes.h"
RCSID("$OpenBSD: sshd.c,v 1.279 2003/09/26 08:19:29 markus Exp $");
RCSID("$OpenBSD: sshd.c,v 1.280 2003/10/02 10:41:59 markus Exp $");
#include <openssl/dh.h>
#include <openssl/bn.h>
@ -758,7 +758,8 @@ drop_connection(int startups)
static void
usage(void)
{
fprintf(stderr, "sshd version %s\n", SSH_VERSION);
fprintf(stderr, "sshd version %s, %s\n",
SSH_VERSION, SSLeay_version(SSLEAY_VERSION));
fprintf(stderr, "Usage: %s [options]\n", __progname);
fprintf(stderr, "Options:\n");
fprintf(stderr, " -f file Configuration file (default %s)\n", _PATH_SERVER_CONFIG_FILE);