- add support for recursive transfers (but not for floppies), e.g.
authormartynas <martynas@openbsd.org>
Tue, 8 Jul 2008 21:07:57 +0000 (21:07 +0000)
committermartynas <martynas@openbsd.org>
Tue, 8 Jul 2008 21:07:57 +0000 (21:07 +0000)
commit77b8954d6c8cb7b050fc440fb32e379b001df42b
treec5118553151846ca872489ef508cacf4b60abda1
parent539ddd41d4432ce65f3ea79459c50c8a876a0ea7
- add support for recursive transfers (but not for floppies), e.g.
'mget -cr 4.*' would recursively fetch (-r), and resume the previous
transfers (-c) of 4.X release directories
uses local matching (fnmatch), but only for recursive transfers.
current behavior is not changed in any way.
- while here, ifndef SMALL debugging stuff, this saves some space,
for floppies
- some debugging code was enabled for non-debugging mode, checks
assume debug is set to zero, but it's not initially set
- all "Confirm with" prompts are forced, remove redundant argument
- fix usage: -C and -c are not available for SMALL

discussed a year ago w/ pyr@
looks good to millert@
previous version looked good to pyr@
man page tweaks & ok jmc@
12 files changed:
usr.bin/ftp/Makefile
usr.bin/ftp/cmds.c
usr.bin/ftp/cmdtab.c
usr.bin/ftp/complete.c
usr.bin/ftp/extern.h
usr.bin/ftp/fetch.c
usr.bin/ftp/ftp.1
usr.bin/ftp/ftp.c
usr.bin/ftp/ftp_var.h
usr.bin/ftp/list.c [new file with mode: 0644]
usr.bin/ftp/main.c
usr.bin/ftp/util.c