chiark / gitweb /
Fix a debug message in the obsolete sshpsql archive access driver.
authorIan Jackson <ijackson@chiark.greenend.org.uk>
Sun, 26 Jul 2015 20:33:48 +0000 (21:33 +0100)
committerIan Jackson <ijackson@chiark.greenend.org.uk>
Sun, 26 Jul 2015 21:54:28 +0000 (22:54 +0100)
debian/changelog
dgit

index c1088399f37e68273f499ceef87089313358228f..1595f713c09db11c0cf88fb50458427280650854 100644 (file)
@@ -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 56cee1140814185072007d6acf2f2e9336b9f6dd..a0f560ae66bfc4091af80410fab18396fda62359 100755 (executable)
--- a/dgit
+++ b/dgit
@@ -984,7 +984,7 @@ sub sshpsql ($$$) {
     open P, "-|", @cmd or die $!;
     while (<P>) {
        chomp or die;
-       printdebug("$debugprefix>|$_|\n");
+       printdebug(">|$_|\n");
        push @rows, $_;
     }
     $!=0; $?=0; close P or failedcmd @cmd;