Fixed parsing of DKIM record with ; in quotes

http://sourceforge.net/tracker/?func=detail&atid=117457&aid=3139576&group_id=17457
This commit is contained in:
Jamie Cameron
2010-12-18 11:30:38 -08:00
parent 57480a2a96
commit 8889f4344a

View File

@@ -36,7 +36,7 @@ while($line = <FILE>) {
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 = "";
}
}