View | Details | Raw Unified | Return to bug 15301
Collapse All | Expand All

(-)syslogd.c (-1 / +1 lines)
Lines 559-565 Link Here
559
559
560
	q = line;
560
	q = line;
561
561
562
	while ((c = *p++ & 0177) != '\0' &&
562
	while ((c = *p++) != '\0' &&
563
	    q < &line[sizeof(line) - 1])
563
	    q < &line[sizeof(line) - 1])
564
		if (iscntrl(c))
564
		if (iscntrl(c))
565
			if (c == '\n')
565
			if (c == '\n')

Return to bug 15301