- jmc@cvs.openbsd.org 2005/03/01 17:22:06

[ssh.c]
     sync usage() w/ man SYNOPSIS;
     ok markus@
This commit is contained in:
Damien Miller 2005-03-02 12:04:32 +11:00
parent 27e9c5125e
commit 02faeceb56
2 changed files with 9 additions and 5 deletions

View File

@ -22,6 +22,10 @@
[scp.1 sftp.1]
add HashKnownHosts to -o list;
ok markus@
- jmc@cvs.openbsd.org 2005/03/01 17:22:06
[ssh.c]
sync usage() w/ man SYNOPSIS;
ok markus@
20050301
- (djm) OpenBSD CVS sync:
@ -2241,4 +2245,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.3681 2005/03/02 01:04:16 djm Exp $
$Id: ChangeLog,v 1.3682 2005/03/02 01:04:32 djm Exp $

8
ssh.c
View File

@ -40,7 +40,7 @@
*/
#include "includes.h"
RCSID("$OpenBSD: ssh.c,v 1.232 2005/03/01 10:09:52 djm Exp $");
RCSID("$OpenBSD: ssh.c,v 1.233 2005/03/01 17:22:06 jmc Exp $");
#include <openssl/evp.h>
#include <openssl/err.h>
@ -158,10 +158,10 @@ usage(void)
{
fprintf(stderr,
"usage: ssh [-1246AaCfgkMNnqsTtVvXxY] [-b bind_address] [-c cipher_spec]\n"
" [-D [listen-host:]port] [-e escape_char] [-F configfile]\n"
" [-i identity_file] [-L [listen-host:]port:host:hostport]\n"
" [-D port] [-e escape_char] [-F configfile]\n"
" [-i identity_file] [-L [bind_address:]port:host:hostport]\n"
" [-l login_name] [-m mac_spec] [-O ctl_cmd] [-o option] [-p port]\n"
" [-R [listen-host:]port:host:hostport] [-S ctl_path]\n"
" [-R [bind_address:]port:host:hostport] [-S ctl_path]\n"
" [user@]hostname [command]\n"
);
exit(1);