- jmc@cvs.openbsd.org 2004/11/07 17:57:30

[ssh.c]
     usage():
     - add -O
     - sync -S w/ manpage
     - remove -h
This commit is contained in:
Darren Tucker 2004-12-03 14:10:19 +11:00
parent e04644c162
commit 9c6bf325c0
2 changed files with 12 additions and 5 deletions

View File

@ -3,6 +3,12 @@
- jmc@cvs.openbsd.org 2004/11/07 17:42:36
[ssh.1]
options sort, and whitespace;
- jmc@cvs.openbsd.org 2004/11/07 17:57:30
[ssh.c]
usage():
- add -O
- sync -S w/ manpage
- remove -h
20041107
- (dtucker) OpenBSD CVS Sync
@ -1860,4 +1866,4 @@
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
$Id: ChangeLog,v 1.3582 2004/12/03 03:08:45 dtucker Exp $
$Id: ChangeLog,v 1.3583 2004/12/03 03:10:19 dtucker Exp $

9
ssh.c
View File

@ -40,7 +40,7 @@
*/
#include "includes.h"
RCSID("$OpenBSD: ssh.c,v 1.229 2004/11/07 00:01:46 djm Exp $");
RCSID("$OpenBSD: ssh.c,v 1.230 2004/11/07 17:57:30 jmc Exp $");
#include <openssl/evp.h>
#include <openssl/err.h>
@ -157,10 +157,11 @@ static void
usage(void)
{
fprintf(stderr,
"usage: ssh [-1246AaCfghkMNnqsTtVvXxY] [-b bind_address] [-c cipher_spec]\n"
"usage: ssh [-1246AaCfgkMNnqsTtVvXxY] [-b bind_address] [-c cipher_spec]\n"
" [-D port] [-e escape_char] [-F configfile] [-i identity_file]\n"
" [-L port:host:hostport] [-l login_name] [-m mac_spec] [-o option]\n"
" [-p port] [-R port:host:hostport] [-S ctl] [user@]hostname [command]\n"
" [-L port:host:hostport] [-l login_name] [-m mac_spec] [-O ctl_cmd]\n"
" [-o option] [-p port] [-R port:host:hostport] [-S ctl_path]\n"
" [user@]hostname [command]\n"
);
exit(1);
}