]> git.donarmstrong.com Git - debbugs.git/commitdiff
do not lc() version or source-version
authorDon Armstrong <don@volo>
Mon, 19 Feb 2007 01:28:38 +0000 (17:28 -0800)
committerDon Armstrong <don@volo>
Mon, 19 Feb 2007 01:28:38 +0000 (17:28 -0800)
scripts/process.in

index 9f3fffc1dcf3e26225089638d9a5ee9f933f882e..efdfe470e7a41651ef65bf4e1ff64ed8de55794a 100755 (executable)
@@ -152,7 +152,7 @@ for my $phline (@bodylines)
     print DEBUG ">$fn|$fv|\n";
     $fn = lc $fn;
     # Don't lc owner or forwarded
-    $fv = lc $fv unless $fh =~ /^(?:owner|forwarded|usertags)$/;
+    $fv = lc $fv unless $fh =~ /^(?:owner|forwarded|usertags|version|source-version)$/;
     $pheader{$fn} = $fv;
     print DEBUG ">$fn~$fv<\n";
 }