2
0
mirror of https://gitlab.isc.org/isc-projects/dhcp synced 2025-08-22 09:57:20 +00:00

[master] Fix a cut and paste error replacing concat with pick-first-value

This commit is contained in:
Shawn Routhier 2016-06-20 07:48:42 -07:00
parent eb2d84b68e
commit 76a7db2cdd
2 changed files with 6 additions and 1 deletions

View File

@ -82,6 +82,11 @@ by Eric Young (eay@cryptsoft.com).
reporting this issue and supplying its patch.
[ISC-Bugs #42666]
- Correct how the pick-first-value expression is written to a lease
file. Previously it was written as a concat expression due to
a cut and paste error.
[ISC-Bugs #42253]
Changes since 4.3.4b1
- None

View File

@ -3645,7 +3645,7 @@ int write_expression (file, expr, col, indent, firstp)
case expr_pick_first_value:
e = expr;
col = token_print_indent (file, col, indent, "", "",
"concat");
"pick-first-value");
col = token_print_indent (file, col, indent, " ", "",
"(");
scol = col;