diff options
Diffstat (limited to 'usr.bin/ftp/main.c')
-rw-r--r-- | usr.bin/ftp/main.c | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/usr.bin/ftp/main.c b/usr.bin/ftp/main.c index cdde0670620..a0d1674c8f1 100644 --- a/usr.bin/ftp/main.c +++ b/usr.bin/ftp/main.c @@ -1,4 +1,4 @@ -/* $OpenBSD: main.c,v 1.71 2008/08/22 08:52:35 sobrado Exp $ */ +/* $OpenBSD: main.c,v 1.72 2009/04/13 01:47:04 deraadt Exp $ */ /* $NetBSD: main.c,v 1.24 1997/08/18 10:20:26 lukem Exp $ */ /* @@ -66,7 +66,7 @@ static const char copyright[] = #endif /* not lint */ #if !defined(lint) && !defined(SMALL) -static const char rcsid[] = "$OpenBSD: main.c,v 1.71 2008/08/22 08:52:35 sobrado Exp $"; +static const char rcsid[] = "$OpenBSD: main.c,v 1.72 2009/04/13 01:47:04 deraadt Exp $"; #endif /* not lint and not SMALL */ /* @@ -182,7 +182,7 @@ main(volatile int argc, char *argv[]) cookiefile = getenv("http_cookies"); #endif /* !SMALL */ - while ((ch = getopt(argc, argv, "46AaCc:dEegik:mno:pP:r:tvV")) != -1) { + while ((ch = getopt(argc, argv, "46AaCc:dEegik:mno:pP:r:tT:vV")) != -1) { switch (ch) { case '4': family = PF_INET; @@ -281,6 +281,10 @@ main(volatile int argc, char *argv[]) trace = 1; break; + case 'T': + title = strdup(optarg); + break; + case 'v': verbose = 1; break; @@ -770,8 +774,8 @@ usage(void) #ifndef SMALL "d" #endif /* !SMALL */ - "EegimnptVv] [-k seconds] " - "[-P port] [-r seconds] [host [port]]\n" + "EegimnptVv] [-k seconds] [-P port] [-r seconds]\n" + " [-T title] [host [port]]\n" " %s " #ifndef SMALL "[-C] " |