diff options
author | phk <phk@FreeBSD.org> | 1996-09-19 08:15:56 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1996-09-19 08:15:56 +0000 |
commit | 75b39c00ceec1b87954f543d4299e4071fc52d72 (patch) | |
tree | 963bbb66a23e78bded70e164f8d61af57f2e25a8 | |
parent | 9c57d97f8c3abddd0864739b1332b986ba92b473 (diff) | |
download | FreeBSD-src-75b39c00ceec1b87954f543d4299e4071fc52d72.zip FreeBSD-src-75b39c00ceec1b87954f543d4299e4071fc52d72.tar.gz |
Make telnet a synonym for open
-rw-r--r-- | usr.bin/telnet/commands.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/usr.bin/telnet/commands.c b/usr.bin/telnet/commands.c index 9a2a532..255ed40 100644 --- a/usr.bin/telnet/commands.c +++ b/usr.bin/telnet/commands.c @@ -2331,6 +2331,7 @@ static Command cmdtab[] = { { "logout", logouthelp, logout, 1 }, { "display", displayhelp, display, 0 }, { "mode", modestring, modecmd, 0 }, + { "telnet", openhelp, tn, 0 }, { "open", openhelp, tn, 0 }, { "quit", quithelp, quit, 0 }, { "send", sendhelp, sendcmd, 0 }, |