From 0f173d678afb7bc0c41eab28134a546728e16328 Mon Sep 17 00:00:00 2001 From: deraadt Date: Thu, 11 Jan 1996 17:41:53 +0000 Subject: [PATCH] login names starting with "t" were trashed; original bug report by . from soda@sra.co.jp; netbsd pr#1926 --- usr.sbin/lpr/pac/pac.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.sbin/lpr/pac/pac.c b/usr.sbin/lpr/pac/pac.c index cadaba2c7fb..fb0bf675650 100644 --- a/usr.sbin/lpr/pac/pac.c +++ b/usr.sbin/lpr/pac/pac.c @@ -210,7 +210,7 @@ account(acct) while (fgets(linebuf, BUFSIZ, acct) != NULL) { cp = linebuf; - while (any(*cp, " t\t")) + while (any(*cp, " \t")) cp++; t = atof(cp); while (any(*cp, ".0123456789")) -- 2.20.1