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:
parent
eb2d84b68e
commit
76a7db2cdd
5
RELNOTES
5
RELNOTES
@ -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
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user