+Sun May 2 10:22:25 CEST 2004 Tollef Fog Heen <tfheen@debian.org>
+
+ * scripts/dpkg-scanpackages.pl: Give proper case for Origin and
+ Bugs.
+
+Sun May 2 10:04:25 CEST 2004 Tollef Fog Heen <tfheen@debian.org>
+
+ * scripts/controllib.pl: Fix unknown() so it actually manages to pick
+ out the correct field name.
+
Fri Apr 30 11:20:13 CEST 2004 Jordi Mallach <jordi@debian.org
* po/ca.po: Update Catalan translation.
so we include Spanish, Russian and Brazilian Portugese. Closes: #245994.
* Correct dpkg manpage to refer to --force-remove-reinstreq instead of
non-existant --force-reinstreq option. Closes: #232831.
+ * Fix dpkg-source (actually controllib.pl) to output the field name
+ properly again. Closes: #246595.
+ * Make dpkg-scanpackages output Origin and Bugs fields with proper
+ casing. Closes: #154422.
* Updated Translations:
- Catalan (Jordi Mallach).
- Spanish manpages (Ruben Porras). Closes: #246158, #246159, #246160,
}
sub unknown {
- &warn("unknown information field " . $fi{"o:$_"} . " in input data in $_[0]");
+ my $field = $_;
+ my $key = (grep { /^o:C\d+ $field/ } keys %fi)[0];
+ &warn("unknown information field " . $f{"$key"} . " in input data in $_[0]");
}
sub syntax {