From 8889f4344a4ea96abb5ce752315b0e54e1de7fd6 Mon Sep 17 00:00:00 2001 From: Jamie Cameron Date: Sat, 18 Dec 2010 11:30:38 -0800 Subject: [PATCH] Fixed parsing of DKIM record with ; in quotes http://sourceforge.net/tracker/?func=detail&atid=117457&aid=3139576&group_id=17457 --- bind8/records-lib.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bind8/records-lib.pl b/bind8/records-lib.pl index 732d8f630..ae5ca6e50 100755 --- a/bind8/records-lib.pl +++ b/bind8/records-lib.pl @@ -36,7 +36,7 @@ while($line = ) { if ($line =~ /^[^"]*"[^"]*$/) { # Line has only one ", meaning that a ; in the middle # of a quoted string broke it! Fix up - $line .= $comment; + $line .= ";".$comment; $comment = ""; } }