diff options
Diffstat (limited to 'usr.sbin/ppp/systems.c')
-rw-r--r-- | usr.sbin/ppp/systems.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/ppp/systems.c b/usr.sbin/ppp/systems.c index 78c3dcaef5a..8b7b7efdd89 100644 --- a/usr.sbin/ppp/systems.c +++ b/usr.sbin/ppp/systems.c @@ -17,7 +17,7 @@ * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. * - * $Id: systems.c,v 1.2 1997/12/15 22:50:21 brian Exp $ + * $Id: systems.c,v 1.3 1997/12/17 21:17:48 brian Exp $ * * TODO: */ @@ -217,7 +217,7 @@ AllowModes(struct cmdargs const *arg) break; } if (modes[m].mode == 0) - LogPrintf(LogWARN, "%s: Invalid mode\n", arg->argv[f]); + LogPrintf(LogWARN, "allow modes: %s: Invalid mode\n", arg->argv[f]); } modeok = (mode | allowed) == allowed ? 1 : 0; @@ -353,7 +353,7 @@ LoadCommand(struct cmdargs const *arg) LogPrintf(LogERROR, "%s: Label not allowed\n", name); return 1; } else if (SelectSystem(name, CONFFILE) < 0) { - LogPrintf(LogWARN, "%s: not found.\n", name); + LogPrintf(LogWARN, "%s: label not found.\n", name); return -1; } else SetLabel(arg->argc ? name : NULL); |