Index: conf_section.c ================================================================== --- conf_section.c +++ conf_section.c @@ -108,11 +108,11 @@ } /* Find the command and the data in the line. */ cmdend = sep = strpbrk(linebuf_ptr, "="); if (sep == NULL) { - PRINTERR("Invalid line: \"%s\"", linebuf); + PRINTERR_D("Invalid line: \"%s\"", linebuf); continue; } /* Delete space at the end of the command. */ *cmdend--; /* It currently derefs to the seperator.. */