summaryrefslogtreecommitdiffstats
path: root/bin/expr/expr.c
diff options
context:
space:
mode:
authortodd <todd@openbsd.org>2002-06-09 05:47:26 +0000
committertodd <todd@openbsd.org>2002-06-09 05:47:26 +0000
commit885e28c6538a0dc270b47dfbb7612dd8ee491ad5 (patch)
tree64cf8431b37f0d13fd9ab4fe83afe47290a5baeb /bin/expr/expr.c
parentFix the start time on sysctl kvm. (diff)
downloadwireguard-openbsd-885e28c6538a0dc270b47dfbb7612dd8ee491ad5.tar.xz
wireguard-openbsd-885e28c6538a0dc270b47dfbb7612dd8ee491ad5.zip
knf
Diffstat (limited to 'bin/expr/expr.c')
-rw-r--r--bin/expr/expr.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/expr/expr.c b/bin/expr/expr.c
index 27c9de0f038..81391e3a458 100644
--- a/bin/expr/expr.c
+++ b/bin/expr/expr.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: expr.c,v 1.10 2002/02/16 21:27:07 millert Exp $ */
+/* $OpenBSD: expr.c,v 1.11 2002/06/09 05:47:27 todd Exp $ */
/* $NetBSD: expr.c,v 1.3.6.1 1996/06/04 20:41:47 cgd Exp $ */
/*
@@ -94,7 +94,7 @@ is_integer(vp, r)
}
/*
- * POSIX.2 defines an "integer" as an optional unary minus
+ * POSIX.2 defines an "integer" as an optional unary minus
* followed by digits.
*/
s = vp->u.s;
@@ -274,7 +274,7 @@ eval5()
errx(2, "%s", errbuf);
}
- /* compare string against pattern -- remember that patterns
+ /* compare string against pattern -- remember that patterns
are anchored to the beginning of the line */
if (regexec(&rp, l->u.s, 2, rm, 0) == 0 && rm[0].rm_so == 0) {
if (rm[1].rm_so >= 0) {