summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2008-07-10 13:13:29 +0000
committerPascal Rigaux <pixel@mandriva.com>2008-07-10 13:13:29 +0000
commita7eccc3fde98557b9f8975a03a40712e0a40fa74 (patch)
tree007a0c2966eb074fcf3978f9502e126cae2ae9f6
parentc84ced75ca6a90579bdd530c08dfc3b8272c9273 (diff)
downloadurpmi-a7eccc3fde98557b9f8975a03a40712e0a40fa74.tar
urpmi-a7eccc3fde98557b9f8975a03a40712e0a40fa74.tar.gz
urpmi-a7eccc3fde98557b9f8975a03a40712e0a40fa74.tar.bz2
urpmi-a7eccc3fde98557b9f8975a03a40712e0a40fa74.tar.xz
urpmi-a7eccc3fde98557b9f8975a03a40712e0a40fa74.zip
fix debug message
-rw-r--r--urpm/parallel_ka_run.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/urpm/parallel_ka_run.pm b/urpm/parallel_ka_run.pm
index 1d9cb5d6..a51afe58 100644
--- a/urpm/parallel_ka_run.pm
+++ b/urpm/parallel_ka_run.pm
@@ -50,9 +50,9 @@ sub urpm_popen {
while (my $s = <$fh>) {
chomp $s;
- $urpm->{debug}("parallel_ka_run: $node: received: $s") if $urpm->{debug};
my ($node, $s_) = _parse_rshp_output($s) or next;
+ $urpm->{debug}("parallel_ka_run: $node: received: $s_") if $urpm->{debug};
$do->($node, $s_) or last;
}
close $fh or $urpm->{fatal}(1, N("rshp failed, maybe a node is unreacheable"));