]> git.ipfire.org Git - thirdparty/dhcp.git/commitdiff
[master] Fix a cut and paste error replacing concat with pick-first-value
authorShawn Routhier <sar@isc.org>
Mon, 20 Jun 2016 14:48:42 +0000 (07:48 -0700)
committerShawn Routhier <sar@isc.org>
Mon, 20 Jun 2016 14:48:42 +0000 (07:48 -0700)
RELNOTES
common/tree.c

index c7eb246a92500e7b4ff12f3c1d25c0111bd935bc..9077f18ad26ea73a2b59ea6dd249f27f35f386be 100644 (file)
--- a/RELNOTES
+++ b/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
index 5698be5895f4eb3d6237d02ae7b5054e51d96de6..e364b2ac44612d5e8adca7eeab5ef3b8183d1ea3 100644 (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;