summaryrefslogtreecommitdiffstats
path: root/usr.sbin/config/config.y
diff options
context:
space:
mode:
Diffstat (limited to 'usr.sbin/config/config.y')
-rw-r--r--usr.sbin/config/config.y4
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.sbin/config/config.y b/usr.sbin/config/config.y
index adb6ff4..344a777 100644
--- a/usr.sbin/config/config.y
+++ b/usr.sbin/config/config.y
@@ -221,10 +221,8 @@ Opt_list:
Option:
Save_id
= {
- char *s;
-
newopt(&opt, $1, NULL);
- if ((s = strchr($1, '=')))
+ if (strchr($1, '=') != NULL)
errx(1, "%s:%d: The `=' in options should not be "
"quoted", yyfile, yyline);
} |
OpenPOWER on IntegriCloud