summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorMarc Espie <espie@cvs.openbsd.org>2007-07-09 08:07:01 +0000
committerMarc Espie <espie@cvs.openbsd.org>2007-07-09 08:07:01 +0000
commitfdc6dbe3e5557f83736180c8684fceb5dcc9147c (patch)
tree3180ed8c4a45218d98974eccc34f5afe0fc55ed1 /usr.bin
parent2fe91bab448dd7503b14ec319b12e55eb3291245 (diff)
repair, sorry about that (obvious typo, duh)
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/make/parsevar.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/make/parsevar.c b/usr.bin/make/parsevar.c
index aee4543958f..2d64c199b21 100644
--- a/usr.bin/make/parsevar.c
+++ b/usr.bin/make/parsevar.c
@@ -1,5 +1,5 @@
/* $OpenPackages$ */
-/* $OpenBSD: parsevar.c,v 1.4 2007/07/08 17:53:15 espie Exp $ */
+/* $OpenBSD: parsevar.c,v 1.5 2007/07/09 08:07:00 espie Exp $ */
/* $NetBSD: parse.c,v 1.29 1997/03/10 21:20:04 christos Exp $ */
/*
@@ -220,7 +220,7 @@ Parse_CmdlineVar(const char *line)
errorIsOkay = false;
result = parse_variable_assignment(line, VAR_CMD);
- errorIsOkay = errorIsOkay;
+ errorIsOkay = saved;
return result;
}