[ssh-keyscan.1 ssh-keyscan.c]
     the ellipsis is not an optional argument; while here, improve spacing.
This commit is contained in:
Damien Miller 2008-11-03 19:27:07 +11:00
parent a009433333
commit c1719f7f0d
3 changed files with 11 additions and 7 deletions

View File

@ -89,6 +89,9 @@
- stevesk@cvs.openbsd.org 2008/11/01 06:43:33 - stevesk@cvs.openbsd.org 2008/11/01 06:43:33
[channels.c] [channels.c]
fix some typos in log messages; ok djm@ fix some typos in log messages; ok djm@
- sobrado@cvs.openbsd.org 2008/11/01 11:14:36
[ssh-keyscan.1 ssh-keyscan.c]
the ellipsis is not an optional argument; while here, improve spacing.
20080906 20080906
- (dtucker) [config.guess config.sub] Update to latest versions from - (dtucker) [config.guess config.sub] Update to latest versions from
@ -4823,4 +4826,4 @@
OpenServer 6 and add osr5bigcrypt support so when someone migrates OpenServer 6 and add osr5bigcrypt support so when someone migrates
passwords between UnixWare and OpenServer they will still work. OK dtucker@ passwords between UnixWare and OpenServer they will still work. OK dtucker@
$Id: ChangeLog,v 1.5120 2008/11/03 08:26:35 djm Exp $ $Id: ChangeLog,v 1.5121 2008/11/03 08:27:07 djm Exp $

View File

@ -1,4 +1,4 @@
.\" $OpenBSD: ssh-keyscan.1,v 1.24 2008/04/30 10:14:03 djm Exp $ .\" $OpenBSD: ssh-keyscan.1,v 1.25 2008/11/01 11:14:36 sobrado Exp $
.\" .\"
.\" Copyright 1995, 1996 by David Mazieres <dm@lcs.mit.edu>. .\" Copyright 1995, 1996 by David Mazieres <dm@lcs.mit.edu>.
.\" .\"
@ -6,7 +6,7 @@
.\" permitted provided that due credit is given to the author and the .\" permitted provided that due credit is given to the author and the
.\" OpenBSD project by leaving this copyright notice intact. .\" OpenBSD project by leaving this copyright notice intact.
.\" .\"
.Dd $Mdocdate: April 30 2008 $ .Dd $Mdocdate: November 1 2008 $
.Dt SSH-KEYSCAN 1 .Dt SSH-KEYSCAN 1
.Os .Os
.Sh NAME .Sh NAME
@ -21,7 +21,7 @@
.Op Fl T Ar timeout .Op Fl T Ar timeout
.Op Fl t Ar type .Op Fl t Ar type
.Op Ar host | addrlist namelist .Op Ar host | addrlist namelist
.Op Ar ... .Ar ...
.Ek .Ek
.Sh DESCRIPTION .Sh DESCRIPTION
.Nm .Nm

View File

@ -1,4 +1,4 @@
/* $OpenBSD: ssh-keyscan.c,v 1.76 2008/04/30 10:14:03 djm Exp $ */ /* $OpenBSD: ssh-keyscan.c,v 1.77 2008/11/01 11:14:36 sobrado Exp $ */
/* /*
* Copyright 1995, 1996 by David Mazieres <dm@lcs.mit.edu>. * Copyright 1995, 1996 by David Mazieres <dm@lcs.mit.edu>.
* *
@ -713,8 +713,9 @@ fatal(const char *fmt,...)
static void static void
usage(void) usage(void)
{ {
fprintf(stderr, "usage: %s [-46Hv] [-f file] [-p port] [-T timeout] [-t type]\n" fprintf(stderr,
"\t\t [host | addrlist namelist] [...]\n", "usage: %s [-46Hv] [-f file] [-p port] [-T timeout] [-t type]\n"
"\t\t [host | addrlist namelist] ...\n",
__progname); __progname);
exit(1); exit(1);
} }