From: deraadt Date: Thu, 11 Jan 1996 17:41:53 +0000 (+0000) Subject: login names starting with "t" were trashed; original bug report by X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=0f173d678afb7bc0c41eab28134a546728e16328;p=openbsd login names starting with "t" were trashed; original bug report by . from soda@sra.co.jp; netbsd pr#1926 --- 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"))