Don't warn about ``!'' lines being unindented commands in ppp.conf.

This commit is contained in:
Brian Somers 1999-05-24 09:04:35 +00:00
parent 994d9b67a5
commit 26e64ed9d4

View File

@ -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;
}