aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--usr.sbin/config/config.y8
1 files changed, 6 insertions, 2 deletions
diff --git a/usr.sbin/config/config.y b/usr.sbin/config/config.y
index 845ee657ceb2..04757a9d23c9 100644
--- a/usr.sbin/config/config.y
+++ b/usr.sbin/config/config.y
@@ -414,6 +414,10 @@ Option:
op->op_name = $1;
op->op_next = opt;
op->op_value = 0;
+ /*
+ * op->op_line is 1-based; yyline is 0-based but is now 1
+ * larger than when `Save_id' was lexed.
+ */
op->op_line = yyline;
opt = op;
if ((s = strchr(op->op_name, '='))) {
@@ -429,7 +433,7 @@ Option:
op->op_name = $1;
op->op_next = opt;
op->op_value = $3;
- op->op_line = yyline;
+ op->op_line = yyline + 1;
opt = op;
} ;
@@ -464,7 +468,7 @@ Mkoption:
op->op_ownfile = 0; /* for now */
op->op_next = mkopt;
op->op_value = $3;
- op->op_line = yyline;
+ op->op_line = yyline + 1;
mkopt = op;
} ;