diff options
Diffstat (limited to 'convert/merge2pcitable.pl')
-rwxr-xr-x | convert/merge2pcitable.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/convert/merge2pcitable.pl b/convert/merge2pcitable.pl index fb2973ae..9d3210c6 100755 --- a/convert/merge2pcitable.pl +++ b/convert/merge2pcitable.pl @@ -53,7 +53,7 @@ sub read_pcitable { my $rm_quote = sub { s/^"// or error("$f:$line: missing left quote"); s/"$// or error("$f:$line: missing right quote"); - /"/ and error("$f:$line: bad double quote"); + /"/ && $strict and error("$f:$line: bad double quote"); $_; }; foreach (cat_($f)) { |