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

(-)src/usr.bin/who/who.c (-1 / +1 lines)
Lines 225-231 Link Here
225
	while (fread(&ut, sizeof(ut), 1, fp) == 1) {
225
	while (fread(&ut, sizeof(ut), 1, fp) == 1) {
226
		if (*ut.ut_name == '\0')
226
		if (*ut.ut_name == '\0')
227
			continue;
227
			continue;
228
		if (ttystat(ut.ut_line, UT_LINESIZE) != 0)
228
		if (*ut.ut_line != ':' && ttystat(ut.ut_line, UT_LINESIZE) != 0)
229
			continue;
229
			continue;
230
		row(&ut);
230
		row(&ut);
231
	}
231
	}

Return to bug 117830