From 26e64ed9d4e3a8a318daeb42006db459e62e3925 Mon Sep 17 00:00:00 2001 From: Brian Somers Date: Mon, 24 May 1999 09:04:35 +0000 Subject: [PATCH] Don't warn about ``!'' lines being unindented commands in ppp.conf. --- usr.sbin/ppp/systems.c | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/usr.sbin/ppp/systems.c b/usr.sbin/ppp/systems.c index e3e4284c01a..6358d9faa45 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.43 1999/05/08 11:07:43 brian Exp $ + * $Id: systems.c,v 1.44 1999/05/09 20:02:26 brian Exp $ * * TODO: */ @@ -329,10 +329,12 @@ ReadSystem(struct bundle *bundle, const char *name, const char *file, continue; if (!indent) { /* start of next section */ - wp = strchr(cp, ':'); - if ((how == SYSTEM_EXEC) && (wp == NULL || wp[1] != '\0')) - log_Printf(LogWARN, "Unindented command (%s line %d) - ignored\n", - filename, linenum); + if (*cp != '!') { + wp = strchr(cp, ':'); + if ((how == SYSTEM_EXEC) && (wp == NULL || wp[1] != '\0')) + log_Printf(LogWARN, "Unindented command (%s line %d) -" + " ignored\n", filename, linenum); + } break; }