diff options
author | brian <brian@FreeBSD.org> | 1997-09-21 13:08:00 +0000 |
---|---|---|
committer | brian <brian@FreeBSD.org> | 1997-09-21 13:08:00 +0000 |
commit | 2f99a3221a4184f53b9eaca11bd32f7811c1862e (patch) | |
tree | 7dc45dc964f6c2e9bd728a5944fe8ea5a62445ea /usr.sbin | |
parent | 131579bb6fbef9d8d6c8e0fc5f471409d8dc093a (diff) | |
download | FreeBSD-src-2f99a3221a4184f53b9eaca11bd32f7811c1862e.zip FreeBSD-src-2f99a3221a4184f53b9eaca11bd32f7811c1862e.tar.gz |
Typo police
Submitted by: Mark Cammidge <mark@gmtunx.ee.uct.ac.za>
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/ppp/command.c | 6 | ||||
-rw-r--r-- | usr.sbin/ppp/vars.c | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/usr.sbin/ppp/command.c b/usr.sbin/ppp/command.c index 5562888..950e627 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.81 1997/09/16 23:15:11 brian Exp $ + * $Id: command.c,v 1.82 1997/09/17 23:17:52 brian Exp $ * */ #include <sys/types.h> @@ -353,7 +353,7 @@ struct cmdtab const Commands[] = { {"shell", "!", FgShellCommand, LOCAL_AUTH, "Run a subshell", "shell|! [sh command]"}, {"show", NULL, ShowCommand, LOCAL_AUTH, - "Show status and statictics", "show var"}, + "Show status and statistics", "show var"}, {"term", NULL, TerminalCommand, LOCAL_AUTH, "Enter to terminal mode", "term"}, {"alias", NULL, AliasCommand, LOCAL_AUTH, @@ -569,7 +569,7 @@ struct cmdtab const ShowCommands[] = { {"ccp", NULL, ReportCcpStatus, LOCAL_AUTH, "Show CCP status", "show cpp"}, {"compress", NULL, ReportCompress, LOCAL_AUTH, - "Show compression statictics", "show compress"}, + "Show compression statistics", "show compress"}, {"dfilter", NULL, ShowDfilter, LOCAL_AUTH, "Show Demand filters", "show dfilteroption .."}, {"escape", NULL, ShowEscape, LOCAL_AUTH, diff --git a/usr.sbin/ppp/vars.c b/usr.sbin/ppp/vars.c index cd1def5..e5b3842 100644 --- a/usr.sbin/ppp/vars.c +++ b/usr.sbin/ppp/vars.c @@ -17,7 +17,7 @@ * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. * - * $Id: vars.c,v 1.27 1997/09/07 01:00:06 brian Exp $ + * $Id: vars.c,v 1.28 1997/09/16 23:15:16 brian Exp $ * */ #include "fsm.h" @@ -30,7 +30,7 @@ #include "defs.h" char VarVersion[] = "PPP Version 1.2"; -char VarLocalVersion[] = "$Date: 1997/09/07 01:00:06 $"; +char VarLocalVersion[] = "$Date: 1997/09/16 23:15:16 $"; /* * Order of conf option is important. See vars.h. @@ -149,7 +149,7 @@ LocalAuthCommand(struct cmdtab * list, int argc, char **argv) break; case NOT_FOUND: pppVars.lauth = LOCAL_AUTH; - LogPrintf(LogWARN, "WARING: No Entry for this system\n"); + LogPrintf(LogWARN, "WARNING: No Entry for this system\n"); break; default: pppVars.lauth = LOCAL_NO_AUTH; |