upstream: ssh-agent.1: - use Nm not Xr for self-ref - while here,

wrap a long line

ssh-agent.c:
- add -O to usage()

OpenBSD-Commit-ID: 855dac4695cef22e96d69c53436496bc408ca389
This commit is contained in:
jmc@openbsd.org 2022-10-07 06:00:58 +00:00 committed by Damien Miller
parent 9fd2441113
commit 4a4883664d
No known key found for this signature in database
2 changed files with 8 additions and 8 deletions

View File

@ -1,4 +1,4 @@
.\" $OpenBSD: ssh-agent.1,v 1.74 2022/10/07 04:06:26 djm Exp $ .\" $OpenBSD: ssh-agent.1,v 1.75 2022/10/07 06:00:58 jmc Exp $
.\" .\"
.\" Author: Tatu Ylonen <ylo@cs.hut.fi> .\" Author: Tatu Ylonen <ylo@cs.hut.fi>
.\" Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland .\" Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@ -106,15 +106,15 @@ Kill the current agent (given by the
environment variable). environment variable).
.It Fl O Ar option .It Fl O Ar option
Specify an option when starting Specify an option when starting
.Xr ssh-agent 1 . .Nm .
Currently only one option is supported: Currently only one option is supported:
.Cm no-restrict-websafe . .Cm no-restrict-websafe .
This instructs This instructs
.Xr ssh-agent 1 .Nm
to permit signatures using FIDO keys that might be web authentication to permit signatures using FIDO keys that might be web authentication
requests. requests.
By default, By default,
.Xr ssh-agent 1 .Nm
refuses signature requests for FIDO keys where the key application string refuses signature requests for FIDO keys where the key application string
does not start with does not start with
.Dq ssh: .Dq ssh:

View File

@ -1,4 +1,4 @@
/* $OpenBSD: ssh-agent.c,v 1.292 2022/09/17 10:11:29 djm Exp $ */ /* $OpenBSD: ssh-agent.c,v 1.293 2022/10/07 06:00:58 jmc Exp $ */
/* /*
* Author: Tatu Ylonen <ylo@cs.hut.fi> * Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@ -1992,9 +1992,9 @@ usage(void)
{ {
fprintf(stderr, fprintf(stderr,
"usage: ssh-agent [-c | -s] [-Dd] [-a bind_address] [-E fingerprint_hash]\n" "usage: ssh-agent [-c | -s] [-Dd] [-a bind_address] [-E fingerprint_hash]\n"
" [-P allowed_providers] [-t life]\n" " [-O option] [-P allowed_providers] [-t life]\n"
" ssh-agent [-a bind_address] [-E fingerprint_hash] [-P allowed_providers]\n" " ssh-agent [-a bind_address] [-E fingerprint_hash] [-O option]\n"
" [-t life] command [arg ...]\n" " [-P allowed_providers] [-t life] command [arg ...]\n"
" ssh-agent [-c | -s] -k\n"); " ssh-agent [-c | -s] -k\n");
exit(1); exit(1);
} }