From 927fde1af821e294dd563a508bdeaefb08d37b0e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jan=20Kr=C3=BCger?= Date: Fri, 5 Nov 2010 03:19:43 +0100 Subject: [PATCH] jobd: new progress output: fix typo MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Called a non-existent function. Doesn't now. Signed-off-by: Jan Krüger --- jobd/jobd.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jobd/jobd.pl b/jobd/jobd.pl index 236b7cf..7827885 100755 --- a/jobd/jobd.pl +++ b/jobd/jobd.pl @@ -214,7 +214,7 @@ sub run_queue { if (@running) { my @run_status; for (@running) { - push @run_status, _jobname($_)." for ". (time - $_->{'started_at'}) ."s"; + push @run_status, _job_name($_)." for ". (time - $_->{'started_at'}) ."s"; } error("STATUS: currently running: ". join(', ', @run_status)); } -- 2.11.4.GIT