diff options
author | jmc@openbsd.org <jmc@openbsd.org> | 2022-10-07 08:00:58 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2022-10-24 23:55:10 +0200 |
commit | 4a4883664d6b4e9e4e459a8cdc16bd8d4b735de9 (patch) | |
tree | ce9bdf347cf6ca566246f8952d81d361150986ab /ssh-agent.c | |
parent | upstream: document "-O no-restrict-websafe"; spotted by Ross L (diff) | |
download | openssh-4a4883664d6b4e9e4e459a8cdc16bd8d4b735de9.tar.xz openssh-4a4883664d6b4e9e4e459a8cdc16bd8d4b735de9.zip |
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
Diffstat (limited to 'ssh-agent.c')
-rw-r--r-- | ssh-agent.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ssh-agent.c b/ssh-agent.c index 006ddad94..44eb0a681 100644 --- a/ssh-agent.c +++ b/ssh-agent.c @@ -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> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -1992,9 +1992,9 @@ usage(void) { fprintf(stderr, "usage: ssh-agent [-c | -s] [-Dd] [-a bind_address] [-E fingerprint_hash]\n" - " [-P allowed_providers] [-t life]\n" - " ssh-agent [-a bind_address] [-E fingerprint_hash] [-P allowed_providers]\n" - " [-t life] command [arg ...]\n" + " [-O option] [-P allowed_providers] [-t life]\n" + " ssh-agent [-a bind_address] [-E fingerprint_hash] [-O option]\n" + " [-P allowed_providers] [-t life] command [arg ...]\n" " ssh-agent [-c | -s] -k\n"); exit(1); } |