summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoey Hess <joey@kitenet.net>2011-05-27 09:39:08 -0400
committerJoey Hess <joey@kitenet.net>2011-05-27 09:39:08 -0400
commit9a43d7dbf76c71949b98522f0a80f05e1115a3d6 (patch)
tree8513e898cc990ce6792ce3db8d642dbd6c405e8b
parent5e13cc10b6c899fa143b76d4b312b7cdb2e39d08 (diff)
Fix error message. Closes: #628053
-rw-r--r--Debian/Debhelper/Dh_Lib.pm2
-rw-r--r--debian/changelog1
2 files changed, 2 insertions, 1 deletions
diff --git a/Debian/Debhelper/Dh_Lib.pm b/Debian/Debhelper/Dh_Lib.pm
index dcba4d24..51b53d3e 100644
--- a/Debian/Debhelper/Dh_Lib.pm
+++ b/Debian/Debhelper/Dh_Lib.pm
@@ -609,7 +609,7 @@ sub filedoublearray {
my $globdir=shift;
my @ret;
- open (DH_FARRAY_IN, $file) || error("cannot read $file: $1");
+ open (DH_FARRAY_IN, $file) || error("cannot read $file: $!");
while (<DH_FARRAY_IN>) {
chomp;
# Only ignore comments and empty lines in v5 mode.
diff --git a/debian/changelog b/debian/changelog
index 677165aa..47a66182 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,7 @@
debhelper (8.1.7) UNRELEASED; urgency=low
* Fix example. Closes: #627534
+ * Fix error message. Closes: #628053
-- Joey Hess <joeyh@debian.org> Sat, 21 May 2011 15:24:19 -0400