From: Ian Jackson Date: Sun, 26 Jul 2015 20:33:48 +0000 (+0100) Subject: Fix a debug message in the obsolete sshpsql archive access driver. X-Git-Tag: debian/1.1~29 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=dgit.git;a=commitdiff_plain;h=c0d5a56bb79f172e549476e6f2147bc423389090 Fix a debug message in the obsolete sshpsql archive access driver. --- diff --git a/debian/changelog b/debian/changelog index c1088399..1595f713 100644 --- a/debian/changelog +++ b/debian/changelog @@ -41,6 +41,7 @@ dgit (1.1~~) unstable; urgency=low * Honour dgit-distros.DISTRO.cmd-CMD and .opts-CMD. Closes:#793427. * Slurp in entire git config, for better performance. * With -DDDD, print out all gitcfg references (copious!) + * Fix a debug message in the obsolete sshpsql archive access driver. -- diff --git a/dgit b/dgit index 56cee114..a0f560ae 100755 --- a/dgit +++ b/dgit @@ -984,7 +984,7 @@ sub sshpsql ($$$) { open P, "-|", @cmd or die $!; while (

) { chomp or die; - printdebug("$debugprefix>|$_|\n"); + printdebug(">|$_|\n"); push @rows, $_; } $!=0; $?=0; close P or failedcmd @cmd;