From: Mike Karels Date: Tue, 14 Jan 1986 09:58:18 +0000 (-0800) Subject: add disconnect alias for close (as help message points at it) X-Git-Tag: BSD-4_3-Snapshot-Development~3570 X-Git-Url: https://git.subgeniuskitty.com/unix-history/.git/commitdiff_plain/a0b49579280ad95152da55a91339c75652cd7fe5 add disconnect alias for close (as help message points at it) SCCS-vsn: usr.bin/ftp/cmdtab.c 5.2 --- diff --git a/usr/src/usr.bin/ftp/cmdtab.c b/usr/src/usr.bin/ftp/cmdtab.c index a072ff3fd6..f5dd29a58a 100644 --- a/usr/src/usr.bin/ftp/cmdtab.c +++ b/usr/src/usr.bin/ftp/cmdtab.c @@ -5,7 +5,7 @@ */ #ifndef lint -static char sccsid[] = "@(#)cmdtab.c 5.1 (Berkeley) %G%"; +static char sccsid[] = "@(#)cmdtab.c 5.2 (Berkeley) %G%"; #endif not lint #include "ftp_var.h" @@ -78,6 +78,7 @@ struct cmd cmdtab[] = { { "delete", deletehelp, 0, 1, delete }, { "debug", debughelp, 0, 0, setdebug }, { "dir", dirhelp, 1, 1, ls }, + { "disconnect", disconhelp, 0, 1, disconnect }, { "form", formhelp, 0, 1, setform }, { "get", receivehelp, 1, 1, get }, { "glob", globhelp, 0, 0, setglob },