diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | ssh.c | 8 |
2 files changed, 9 insertions, 5 deletions
@@ -22,6 +22,10 @@ | |||
22 | [scp.1 sftp.1] | 22 | [scp.1 sftp.1] |
23 | add HashKnownHosts to -o list; | 23 | add HashKnownHosts to -o list; |
24 | ok markus@ | 24 | ok markus@ |
25 | - jmc@cvs.openbsd.org 2005/03/01 17:22:06 | ||
26 | [ssh.c] | ||
27 | sync usage() w/ man SYNOPSIS; | ||
28 | ok markus@ | ||
25 | 29 | ||
26 | 20050301 | 30 | 20050301 |
27 | - (djm) OpenBSD CVS sync: | 31 | - (djm) OpenBSD CVS sync: |
@@ -2241,4 +2245,4 @@ | |||
2241 | - (djm) Trim deprecated options from INSTALL. Mention UsePAM | 2245 | - (djm) Trim deprecated options from INSTALL. Mention UsePAM |
2242 | - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu | 2246 | - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu |
2243 | 2247 | ||
2244 | $Id: ChangeLog,v 1.3681 2005/03/02 01:04:16 djm Exp $ | 2248 | $Id: ChangeLog,v 1.3682 2005/03/02 01:04:32 djm Exp $ |
@@ -40,7 +40,7 @@ | |||
40 | */ | 40 | */ |
41 | 41 | ||
42 | #include "includes.h" | 42 | #include "includes.h" |
43 | RCSID("$OpenBSD: ssh.c,v 1.232 2005/03/01 10:09:52 djm Exp $"); | 43 | RCSID("$OpenBSD: ssh.c,v 1.233 2005/03/01 17:22:06 jmc Exp $"); |
44 | 44 | ||
45 | #include <openssl/evp.h> | 45 | #include <openssl/evp.h> |
46 | #include <openssl/err.h> | 46 | #include <openssl/err.h> |
@@ -158,10 +158,10 @@ usage(void) | |||
158 | { | 158 | { |
159 | fprintf(stderr, | 159 | fprintf(stderr, |
160 | "usage: ssh [-1246AaCfgkMNnqsTtVvXxY] [-b bind_address] [-c cipher_spec]\n" | 160 | "usage: ssh [-1246AaCfgkMNnqsTtVvXxY] [-b bind_address] [-c cipher_spec]\n" |
161 | " [-D [listen-host:]port] [-e escape_char] [-F configfile]\n" | 161 | " [-D port] [-e escape_char] [-F configfile]\n" |
162 | " [-i identity_file] [-L [listen-host:]port:host:hostport]\n" | 162 | " [-i identity_file] [-L [bind_address:]port:host:hostport]\n" |
163 | " [-l login_name] [-m mac_spec] [-O ctl_cmd] [-o option] [-p port]\n" | 163 | " [-l login_name] [-m mac_spec] [-O ctl_cmd] [-o option] [-p port]\n" |
164 | " [-R [listen-host:]port:host:hostport] [-S ctl_path]\n" | 164 | " [-R [bind_address:]port:host:hostport] [-S ctl_path]\n" |
165 | " [user@]hostname [command]\n" | 165 | " [user@]hostname [command]\n" |
166 | ); | 166 | ); |
167 | exit(1); | 167 | exit(1); |