106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
-
+
|
PRINTERR_D("Ignoring line (because ignored section): %s", linebuf);
continue;
}
/* 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.. */
while (*cmdend <= ' ') {
*cmdend = '\0';
|