summaryrefslogtreecommitdiff
path: root/sftp.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-09-18 05:47:32 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-09-18 05:47:32 +0000
commit6a337633321a3aef52d766e643f0abba7cdad02f (patch)
tree2e718cc34406ff1c9b8e84b839867db4622eb3c9 /sftp.c
parenta2fec90e0541e993eb336c02bac0351f6ae0448b (diff)
- stevesk@cvs.openbsd.org 2001/09/17 20:38:09
[sftp.1 sftp.c] cleanup and document -1, -s and -S; ok markus@
Diffstat (limited to 'sftp.c')
-rw-r--r--sftp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sftp.c b/sftp.c
index b9558efd7..519ee6969 100644
--- a/sftp.c
+++ b/sftp.c
@@ -24,7 +24,7 @@
24 24
25#include "includes.h" 25#include "includes.h"
26 26
27RCSID("$OpenBSD: sftp.c,v 1.19 2001/09/17 17:57:57 stevesk Exp $"); 27RCSID("$OpenBSD: sftp.c,v 1.20 2001/09/17 20:38:09 stevesk Exp $");
28 28
29/* XXX: commandline mode */ 29/* XXX: commandline mode */
30/* XXX: short-form remote directory listings (like 'ls -C') */ 30/* XXX: short-form remote directory listings (like 'ls -C') */
@@ -94,8 +94,8 @@ static void
94usage(void) 94usage(void)
95{ 95{
96 fprintf(stderr, 96 fprintf(stderr,
97 "usage: sftp [-1vC] [-b batchfile] [-F config] [-o option]\n" 97 "usage: sftp [-1Cv] [-b batchfile] [-F config] [-o option] [-s subsystem|path]\n"
98 " [user@]host[:file [file]]\n"); 98 " [-S program] [user@]host[:file [file]]\n");
99 exit(1); 99 exit(1);
100} 100}
101 101