summaryrefslogtreecommitdiff
path: root/usr.sbin/lpr/lpq/lpq.c
diff options
context:
space:
mode:
authorJason McIntyre <jmc@cvs.openbsd.org>2022-12-28 21:30:20 +0000
committerJason McIntyre <jmc@cvs.openbsd.org>2022-12-28 21:30:20 +0000
commit30c6e2bff10bcc21f60c21eb9d29068c6790aed4 (patch)
tree160b7cd24896186ded48d98dd67e701b7f1c7ff2 /usr.sbin/lpr/lpq/lpq.c
parent6d982a342f98d6530a0f71d5f67313d5f2a07382 (diff)
spelling fixes; from paul tagliamonte
any parts of his diff not taken are noted on tech
Diffstat (limited to 'usr.sbin/lpr/lpq/lpq.c')
-rw-r--r--usr.sbin/lpr/lpq/lpq.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/lpr/lpq/lpq.c b/usr.sbin/lpr/lpq/lpq.c
index c4c228b85cb..12fe0bf3c06 100644
--- a/usr.sbin/lpr/lpq/lpq.c
+++ b/usr.sbin/lpr/lpq/lpq.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: lpq.c,v 1.24 2022/12/04 23:50:51 cheloha Exp $ */
+/* $OpenBSD: lpq.c,v 1.25 2022/12/28 21:30:17 jmc Exp $ */
/* $NetBSD: lpq.c,v 1.9 1999/12/07 14:54:47 mrg Exp $ */
/*
@@ -98,7 +98,7 @@ main(int argc, char **argv)
case 'w':
l = strtol(optarg, &cp, 10);
if (*cp != '\0' || l < 0 || l >= INT_MAX)
- errx(1, "wait time must be postive integer: %s",
+ errx(1, "wait time must be positive integer: %s",
optarg);
wait_time = (u_int)l;
if (wait_time < 30)