diff options
| author | 2008-02-26 18:52:53 +0000 | |
|---|---|---|
| committer | 2008-02-26 18:52:53 +0000 | |
| commit | f9b24bdcc97341378556421acadf8bd086877d4b (patch) | |
| tree | a100ef33c90b3e452785bd16bbafd9e23c4c39ee /usr.sbin/ftp-proxy/ftp-proxy.c | |
| parent | support EPSON CX5400 scanner; Christophe Etcheverry <cetcheve at gmail dot com> (diff) | |
| download | wireguard-openbsd-f9b24bdcc97341378556421acadf8bd086877d4b.tar.xz wireguard-openbsd-f9b24bdcc97341378556421acadf8bd086877d4b.zip | |
Don't pass quick when tagging, so the tag can be used outside
the ftp-proxy anchor. Exotic setups with route-to etc.
can be implemented this way.
from camield, ok reyk beck canacar and manpage polished by jmc
Diffstat (limited to 'usr.sbin/ftp-proxy/ftp-proxy.c')
| -rw-r--r-- | usr.sbin/ftp-proxy/ftp-proxy.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.sbin/ftp-proxy/ftp-proxy.c b/usr.sbin/ftp-proxy/ftp-proxy.c index 3a691859c32..1a3bdf55fbd 100644 --- a/usr.sbin/ftp-proxy/ftp-proxy.c +++ b/usr.sbin/ftp-proxy/ftp-proxy.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ftp-proxy.c,v 1.15 2007/08/15 15:18:02 camield Exp $ */ +/* $OpenBSD: ftp-proxy.c,v 1.16 2008/02/26 18:52:53 henning Exp $ */ /* * Copyright (c) 2004, 2005 Camiel Dobbelaar, <cd@sentia.nl> @@ -1117,6 +1117,7 @@ usage(void) { fprintf(stderr, "usage: %s [-6Adrv] [-a address] [-b address]" " [-D level] [-m maxsessions]\n [-P port]" - " [-p port] [-q queue] [-R address] [-T tag] [-t timeout]\n", __progname); + " [-p port] [-q queue] [-R address] [-T tag]\n" + " [-t timeout]\n", __progname); exit(1); } |
