diff options
author | Martynas Venckus <martynas@cvs.openbsd.org> | 2009-06-06 12:07:34 +0000 |
---|---|---|
committer | Martynas Venckus <martynas@cvs.openbsd.org> | 2009-06-06 12:07:34 +0000 |
commit | 89874b996b9fb501bd014bb5dce3122c235936e4 (patch) | |
tree | 45c5011a73b3ddc3173530dcfa536b1c906ae486 /usr.bin/ftp/main.c | |
parent | 4cb110240acd5065ff89e41d8ce6f711d496579d (diff) |
it fetches multiple urls; so usage was wrong. ok sthen@
Diffstat (limited to 'usr.bin/ftp/main.c')
-rw-r--r-- | usr.bin/ftp/main.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/ftp/main.c b/usr.bin/ftp/main.c index 97586f92226..9a1332524f8 100644 --- a/usr.bin/ftp/main.c +++ b/usr.bin/ftp/main.c @@ -1,4 +1,4 @@ -/* $OpenBSD: main.c,v 1.78 2009/06/04 20:58:34 martynas Exp $ */ +/* $OpenBSD: main.c,v 1.79 2009/06/06 12:07:33 martynas Exp $ */ /* $NetBSD: main.c,v 1.24 1997/08/18 10:20:26 lukem Exp $ */ /* @@ -749,22 +749,22 @@ usage(void) " %s [-C] " #endif /* !SMALL */ "[-o output] " - "ftp://[user:password@]host[:port]/file[/]\n" + "ftp://[user:password@]host[:port]/file[/] ...\n" " %s " #ifndef SMALL "[-C] [-c cookie] " #endif /* !SMALL */ "[-o output] " - "http://host[:port]/file\n" + "http://host[:port]/file ...\n" #ifndef SMALL " %s [-C] [-c cookie] [-o output] " - "https://host[:port]/file\n" + "https://host[:port]/file ...\n" #endif /* !SMALL */ " %s " #ifndef SMALL "[-C] " #endif /* !SMALL */ - "[-o output] host:/file[/]\n", + "[-o output] host:/file[/] ...\n", #ifndef SMALL __progname, __progname, __progname, __progname, __progname); #else /* !SMALL */ |