4634. [contrib] check5011.pl needs to handle optional space before

semi-colon in +multi-line output. [RT #45352]

(cherry picked from commit ed2659c974)
This commit is contained in:
Mark Andrews
2017-06-11 22:03:51 +10:00
parent 0e24f61207
commit 55e4910660
2 changed files with 4 additions and 1 deletions

View File

@@ -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

View File

@@ -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;