diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-04-10 00:17:12 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-04-10 00:17:12 +0000 |
commit | ca9da2fffc007fb7479840d6a3ba5209208232e9 (patch) | |
tree | f10f22d7e944c0c06dce4ca1fe2e303a77f8356b /usr.bin/ftp/cmdtab.c | |
parent | 975051f354d8d3df4a27726b894a457cb7154489 (diff) |
Sync with NetBSD (lukem)
* support $ftp_proxy for ftp:// transfers [bin/3245]
* add "more" & "less" as synonyms for "page"
* move editline setup code into controlediting(), and call appropriately.
only setup setup terminal if going into interactive mode.
Diffstat (limited to 'usr.bin/ftp/cmdtab.c')
-rw-r--r-- | usr.bin/ftp/cmdtab.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/usr.bin/ftp/cmdtab.c b/usr.bin/ftp/cmdtab.c index 0e440af8d3f..a15453a130a 100644 --- a/usr.bin/ftp/cmdtab.c +++ b/usr.bin/ftp/cmdtab.c @@ -1,5 +1,5 @@ -/* $OpenBSD: cmdtab.c,v 1.8 1997/03/21 20:59:27 millert Exp $ */ -/* $NetBSD: cmdtab.c,v 1.14 1997/03/14 01:39:34 christos Exp $ */ +/* $OpenBSD: cmdtab.c,v 1.9 1997/04/10 00:17:08 millert Exp $ */ +/* $NetBSD: cmdtab.c,v 1.15 1997/04/05 03:27:33 lukem Exp $ */ /* * Copyright (c) 1985, 1989, 1993, 1994 @@ -38,7 +38,7 @@ #if 0 static char sccsid[] = "@(#)cmdtab.c 8.4 (Berkeley) 10/9/94"; #else -static char rcsid[] = "$OpenBSD: cmdtab.c,v 1.8 1997/03/21 20:59:27 millert Exp $"; +static char rcsid[] = "$OpenBSD: cmdtab.c,v 1.9 1997/04/10 00:17:08 millert Exp $"; #endif #endif /* not lint */ @@ -166,6 +166,7 @@ struct cmd cmdtab[] = { { "idle", idlehelp, 0, 1, 1, CMPL0 idle }, { "image", binaryhelp, 0, 1, 1, CMPL0 setbinary }, { "lcd", lcdhelp, 0, 0, 0, CMPL(l) lcd }, + { "less", pagehelp, 1, 1, 1, CMPL(r) page }, { "lpwd", lpwdhelp, 0, 0, 0, CMPL0 lpwd }, { "ls", lshelp, 1, 1, 1, CMPL(rl) ls }, { "macdef", macdefhelp, 0, 0, 0, CMPL0 macdef }, @@ -176,6 +177,7 @@ struct cmd cmdtab[] = { { "mls", mlshelp, 1, 1, 1, CMPL(R) mls }, { "mode", modehelp, 0, 1, 1, CMPL0 setftmode }, { "modtime", modtimehelp, 0, 1, 1, CMPL(r) modtime }, + { "more", pagehelp, 1, 1, 1, CMPL(r) page }, { "mput", mputhelp, 1, 1, 1, CMPL(L) mput }, { "msend", mputhelp, 1, 1, 1, CMPL(L) mput }, { "newer", newerhelp, 1, 1, 1, CMPL(r) newer }, |