diff options
author | brian <brian@FreeBSD.org> | 1997-05-31 16:37:19 +0000 |
---|---|---|
committer | brian <brian@FreeBSD.org> | 1997-05-31 16:37:19 +0000 |
commit | ea3d6b07432521426119c49865fd652ccc13d1a6 (patch) | |
tree | c76e04fa0ed9db4d1d0e38b08af24b34b4ba5dbf /usr.sbin | |
parent | 4f8081d1a7a2c7a9721a6699dc180036a9a38ef8 (diff) | |
download | FreeBSD-src-ea3d6b07432521426119c49865fd652ccc13d1a6.zip FreeBSD-src-ea3d6b07432521426119c49865fd652ccc13d1a6.tar.gz |
Remove "set mtu ..." ability. Currently, this is an
"alias" for "set mru ...", but there's no such thing
as setting your mtu in the ppp protocol (rfc1661).
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/ppp/command.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ppp/command.c b/usr.sbin/ppp/command.c index 821c261..4f7a7e4 100644 --- a/usr.sbin/ppp/command.c +++ b/usr.sbin/ppp/command.c @@ -17,7 +17,7 @@ * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. * - * $Id: command.c,v 1.50 1997/05/26 00:43:58 brian Exp $ + * $Id: command.c,v 1.51 1997/05/29 02:29:12 brian Exp $ * */ #include <sys/types.h> @@ -1115,7 +1115,7 @@ struct cmdtab const SetCommands[] = { "Set input filter", "..."}, { "login", NULL, SetVariable, LOCAL_AUTH, "Set login script", StrChatStr, (void *)VAR_LOGIN }, - { "mru", "mtu", SetInitialMRU, LOCAL_AUTH, + { "mru", NULL, SetInitialMRU, LOCAL_AUTH, "Set Initial MRU value", StrValue }, { "ofilter", NULL, SetOfilter, LOCAL_AUTH, "Set output filter", "..." }, |