summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorespie <espie@openbsd.org>2011-07-30 21:02:13 +0000
committerespie <espie@openbsd.org>2011-07-30 21:02:13 +0000
commit72a705e5212c19ad546e816a0c5a396c6e3c974b (patch)
treefd6450cad875e703d767f01c888647468e1d645d
parentSend SIGBUS instead of SIGSEGV for unaligned access which is not emulated (diff)
downloadwireguard-openbsd-72a705e5212c19ad546e816a0c5a396c6e3c974b.tar.xz
wireguard-openbsd-72a705e5212c19ad546e816a0c5a396c6e3c974b.zip
deemed unsafe by theo, will wait after 5.0
-rw-r--r--usr.bin/make/varmodifiers.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.bin/make/varmodifiers.c b/usr.bin/make/varmodifiers.c
index d7cb2c6ebd7..f32c6787967 100644
--- a/usr.bin/make/varmodifiers.c
+++ b/usr.bin/make/varmodifiers.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: varmodifiers.c,v 1.28 2011/07/29 13:39:00 espie Exp $ */
+/* $OpenBSD: varmodifiers.c,v 1.29 2011/07/30 21:02:13 espie Exp $ */
/* $NetBSD: var.c,v 1.18 1997/03/18 19:24:46 christos Exp $ */
/*
@@ -629,8 +629,7 @@ get_sysvpattern(const char **p, SymTable *ctxt UNUSED, bool err, int endc)
}
Buf_Init(&buf, 0);
for (cp2 = cp+1;; cp2++) {
- if (((*cp2 == ':' && cp2[1] != endc) || *cp2 == endc) &&
- cnt == 0)
+ if ((*cp2 == ':' || *cp2 == endc) && cnt == 0)
break;
if (*cp2 == '\0') {
Buf_Destroy(&buf);