diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1998-02-17 23:22:57 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1998-02-17 23:22:57 +0000 |
commit | 921d6e7e0ac5e0aaff789114a7d2d6e6ff55f05b (patch) | |
tree | 4d501c4a140e71a1b8f3ac7fdd574c154d3c7d71 /usr.bin/ftp/extern.h | |
parent | 4bf25be6f082822cb2e8f1578e000cb51110b1ff (diff) |
Add a new option "-o filename" for autofetch mode. Allows use of
"-" to mean stdout. This replaces the old (unreliable) hueristic
of checking if stdout is a tty and if not make the output go to stdout.
Diffstat (limited to 'usr.bin/ftp/extern.h')
-rw-r--r-- | usr.bin/ftp/extern.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ftp/extern.h b/usr.bin/ftp/extern.h index 1cfa300cb07..abee8241188 100644 --- a/usr.bin/ftp/extern.h +++ b/usr.bin/ftp/extern.h @@ -1,4 +1,4 @@ -/* $OpenBSD: extern.h,v 1.16 1997/09/04 04:37:14 millert Exp $ */ +/* $OpenBSD: extern.h,v 1.17 1998/02/17 23:22:53 millert Exp $ */ /* $NetBSD: extern.h,v 1.17 1997/08/18 10:20:19 lukem Exp $ */ /*- @@ -45,7 +45,7 @@ void abortsend __P((int)); void account __P((int, char **)); void alarmtimer __P((int)); int another __P((int *, char ***, const char *)); -int auto_fetch __P((int, char **, int)); +int auto_fetch __P((int, char **, char *)); void blkfree __P((char **)); void cd __P((int, char **)); void cdup __P((int, char **)); |