upstream: space between macro and punctuation; sort usage();

OpenBSD-Commit-ID: 6141610cfca037700730e41f868d1d9124958f8c
This commit is contained in:
jmc@openbsd.org 2023-02-10 06:41:53 +00:00 committed by Darren Tucker
parent d39a96f70f
commit 285cf6cd4b
No known key found for this signature in database
2 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
.\" $OpenBSD: ssh-keyscan.1,v 1.48 2023/02/10 04:56:30 djm Exp $ .\" $OpenBSD: ssh-keyscan.1,v 1.49 2023/02/10 06:41:53 jmc Exp $
.\" .\"
.\" Copyright 1995, 1996 by David Mazieres <dm@lcs.mit.edu>. .\" Copyright 1995, 1996 by David Mazieres <dm@lcs.mit.edu>.
.\" .\"
@ -109,7 +109,7 @@ flag.
Valid algorithms are Valid algorithms are
.Dq sha1 .Dq sha1
and and
.Dq sha256. .Dq sha256 .
The default is to print both. The default is to print both.
.El .El
.It Fl p Ar port .It Fl p Ar port

View File

@ -1,4 +1,4 @@
/* $OpenBSD: ssh-keyscan.c,v 1.150 2023/02/10 04:56:30 djm Exp $ */ /* $OpenBSD: ssh-keyscan.c,v 1.151 2023/02/10 06:41:53 jmc Exp $ */
/* /*
* Copyright 1995, 1996 by David Mazieres <dm@lcs.mit.edu>. * Copyright 1995, 1996 by David Mazieres <dm@lcs.mit.edu>.
* *
@ -701,8 +701,8 @@ static void
usage(void) usage(void)
{ {
fprintf(stderr, fprintf(stderr,
"usage: ssh-keyscan [-46cDHv] [-f file] [-p port] [-T timeout] [-t type]\n" "usage: ssh-keyscan [-46cDHv] [-f file] [-O option] [-p port] [-T timeout]\n"
" [-O option] [host | addrlist namelist]\n"); " [-t type] [host | addrlist namelist]\n");
exit(1); exit(1);
} }