From 55e491066086cffcba639ddc27b9e91b7d87cc86 Mon Sep 17 00:00:00 2001 From: Mark Andrews Date: Sun, 11 Jun 2017 22:03:51 +1000 Subject: [PATCH] 4634. [contrib] check5011.pl needs to handle optional space before semi-colon in +multi-line output. [RT #45352] (cherry picked from commit ed2659c9747d917a3cbec336790e7583056bc563) --- CHANGES | 3 +++ contrib/scripts/check5011.pl | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 396941b4ec..96f54611b8 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,6 @@ +4634. [contrib] check5011.pl needs to handle optional space before + semi-colon in +multi-line output. [RT #45352] + 4633. [maint] Updated AAAA (2001:500:200::b) for B.ROOT-SERVERS.NET. 4632. [security] The BIND installer on Windows used an unquoted diff --git a/contrib/scripts/check5011.pl b/contrib/scripts/check5011.pl index d4f2d3f1eb..0751a80d49 100644 --- a/contrib/scripts/check5011.pl +++ b/contrib/scripts/check5011.pl @@ -27,7 +27,7 @@ sub getkey ($$) { last if m{^[)]}; $data .= $_; } - m{ alg = (\S+); key id = (\d+)}; + m{ alg = (\S+)\s*; key id = (\d+)}; $k->{alg} = $1; $k->{id} = $2; $k->{data} = $data;