From 9dc4ad19c97b17d28ad1440b6fea85418fcc84ac Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Mon, 7 Nov 2016 20:58:12 +0000 Subject: [PATCH] Fix an unconditional print that was supposed to be a printdebug: origs .orig.tar.gz f.same=1 #f._differ=-1 Signed-off-by: Ian Jackson --- debian/changelog | 2 ++ dgit | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 32064c1e..691b783d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -10,6 +10,8 @@ dgit (2.10~) unstable; urgency=medium the suite, as documented in the manpage. * New comma-separated multiple-suite merging facility (readonly), so that users can easily track "jessie, or jessie-security". + * Fix an unconditional print that was supposed to be a printdebug: + origs .orig.tar.gz f.same=1 #f._differ=-1 -- diff --git a/dgit b/dgit index b7e7f7eb..6a743070 100755 --- a/dgit +++ b/dgit @@ -1891,7 +1891,8 @@ END push @found_differ, "archive $h->{filename}: ".join "; ", @differ if @differ; } - print "origs $file f.same=$found_same #f._differ=$#found_differ\n"; + printdebug "origs $file f.same=$found_same". + " #f._differ=$#found_differ\n"; if (@found_differ && !$found_same) { fail join "\n", "archive contains $file with different checksum", -- 2.30.2