diff options
author | 1997-12-08 20:09:06 +0000 | |
---|---|---|
committer | 1997-12-08 20:09:06 +0000 | |
commit | 9893707122653af78b22f94e9875c3752dd29b67 (patch) | |
tree | f54ba2aa1bf5f26e0aa207357e386ddeab303b7c | |
parent | mention "option IPFILTER" (diff) | |
download | wireguard-openbsd-9893707122653af78b22f94e9875c3752dd29b67.tar.xz wireguard-openbsd-9893707122653af78b22f94e9875c3752dd29b67.zip |
Correct usage of `add' and `delete'.
-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 efb3156c440..b3d9fa71ee1 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.2 1997/12/07 04:09:07 brian Exp $ + * $Id: command.c,v 1.3 1997/12/08 20:09:06 brian Exp $ * */ #include <sys/param.h> @@ -353,7 +353,7 @@ static struct cmdtab const Commands[] = { {"close", NULL, CloseCommand, LOCAL_AUTH, "Close connection", "close"}, {"delete", NULL, DeleteCommand, LOCAL_AUTH, - "delete route", "delete ALL | dest [gateway [mask]]"}, + "delete route", "delete dest"}, {"deny", NULL, DenyCommand, LOCAL_AUTH, "Deny option request", "deny option .."}, {"dial", "call", DialCommand, LOCAL_AUTH, |