From: Joey Hess Date: Fri, 27 May 2011 13:39:08 +0000 (-0400) Subject: Fix error message. Closes: #628053 X-Git-Tag: 8.9.0~27 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=9a43d7dbf76c71949b98522f0a80f05e1115a3d6;p=debhelper.git Fix error message. Closes: #628053 --- diff --git a/Debian/Debhelper/Dh_Lib.pm b/Debian/Debhelper/Dh_Lib.pm index dcba4d2..51b53d3 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 () { chomp; # Only ignore comments and empty lines in v5 mode. diff --git a/debian/changelog b/debian/changelog index 677165a..47a6618 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 Sat, 21 May 2011 15:24:19 -0400