Author: jamessan
Date: 2009-02-19 14:34:04 +0000 (Thu, 19 Feb 2009)
New Revision: 1823
Modified:
trunk/debian/changelog
trunk/scripts/bts.pl
Log:
bts: Include the module name when calling MIME::Base64::encode_base64 since
MIME::Base64 is only being 'require'd not 'use'd. Thanks Євгеній Мещеряков.
(Closes: #516117)
Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog 2009-02-12 23:25:07 UTC (rev 1822)
+++ trunk/debian/changelog 2009-02-19 14:34:04 UTC (rev 1823)
@@ -1,10 +1,16 @@
devscripts (2.10.47) UNRELEASED; urgency=low
+ [ Adam D. Barratt ]
* licensecheck:
+ Document --no-conf.
+ Fix an uninitialised variable warning when --no-conf is used. Thanks.
Cristian Greco. (Closes: #515047)
+ [ James Vega ]
+ * bts: Include the module name when calling MIME::Base64::encode_base64
+ since MIME::Base64 is only being 'require'd not 'use'd. Thanks Євгеній
+ Мещеряков. (Closes: #516117)
+
-- Adam D. Barratt <[email protected]> Thu, 12 Feb 2009 20:23:12 +0000
devscripts (2.10.46) unstable; urgency=low
Modified: trunk/scripts/bts.pl
===================================================================
--- trunk/scripts/bts.pl 2009-02-12 23:25:07 UTC (rev 1822)
+++ trunk/scripts/bts.pl 2009-02-19 14:34:04 UTC (rev 1823)
@@ -2481,7 +2481,7 @@
sub MIME_encode_B {
my $str = shift;
require MIME::Base64;
- encode_base64($str, '');
+ MIME::Base64::encode_base64($str, '');
}
sub MIME_encode_Q {
--
To unsubscribe, send mail to [email protected].