summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--usr.sbin/lpr/pac/pac.c2
1 files changed, 1 insertions, 1 deletions
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"))