diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-03-14 04:32:19 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-03-14 04:32:19 +0000 |
commit | 1e56142f89dd7f340eec7460e4de51d43f815bf8 (patch) | |
tree | 30a5ef6b529ecc3ad8da08545388ecc2d77638f9 /usr.bin/ftp/ftp_var.h | |
parent | 144475db6bbada25390f979901aba4d87716f1d3 (diff) |
Sync with NetBSD and fix "get foo.txt /dev/tty" wrt progress meter
and setting times.
Diffstat (limited to 'usr.bin/ftp/ftp_var.h')
-rw-r--r-- | usr.bin/ftp/ftp_var.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ftp/ftp_var.h b/usr.bin/ftp/ftp_var.h index 50468d7891f..2ab7545fc44 100644 --- a/usr.bin/ftp/ftp_var.h +++ b/usr.bin/ftp/ftp_var.h @@ -1,5 +1,5 @@ -/* $OpenBSD: ftp_var.h,v 1.8 1997/02/18 18:04:30 kstailey Exp $ */ -/* $NetBSD: ftp_var.h,v 1.13 1997/02/01 10:45:05 lukem Exp $ */ +/* $OpenBSD: ftp_var.h,v 1.9 1997/03/14 04:32:16 millert Exp $ */ +/* $NetBSD: ftp_var.h,v 1.14 1997/03/13 06:23:19 lukem Exp $ */ /* * Copyright (c) 1985, 1989, 1993, 1994 @@ -57,6 +57,7 @@ #define FTP_PORT 21 /* default if getservbyname("ftp/tcp") fails */ #define HTTP_PORT 80 /* default if getservbyname("http/tcp") fails */ +#define PAGER "more" /* default pager if $PAGER isn't set */ /* * Options and other state info. @@ -68,7 +69,6 @@ int sendport; /* use PORT cmd for each data connection */ int verbose; /* print messages coming back from server */ int connected; /* connected to server */ int fromatty; /* input is from a terminal */ -int use_editline; /* use the editline(3) routine for input */ int interactive; /* interactively prompt on m* cmds */ int confirmrest; /* confirm rest of current m* cmd */ int debug; /* debugging level */ |