From 657a0ac0de51fbf7715cd608deb76fc20caf7027 Mon Sep 17 00:00:00 2001 From: Kern Sibbald Date: Sat, 25 Dec 2010 13:56:58 +0100 Subject: [PATCH] Ensure that Job duration is not negative --- bacula/src/qt-console/job/job.cpp | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/bacula/src/qt-console/job/job.cpp b/bacula/src/qt-console/job/job.cpp index 20514cec5b..c9db572e62 100644 --- a/bacula/src/qt-console/job/job.cpp +++ b/bacula/src/qt-console/job/job.cpp @@ -223,7 +223,7 @@ void Job::populateForm() "WHERE JobId=" + m_jobId; QStringList results; if (m_console->sql_cmd(query, results)) { - QString resultline; + QString resultline, duration; QStringList fieldlist; foreach (resultline, results) { // should have only one result @@ -240,14 +240,23 @@ void Job::populateForm() label_SchedTime->setText(fld.next()); label_StartTime->setText(fld.next()); label_EndTime->setText(fld.next()); - label_Duration->setText(fld.next()); + duration = fld.next(); + /* + * Note: if we have a negative duration, it is because the EndTime + * is zero (i.e. the Job is still running). We should use + * duration = StartTime - current_time + */ + if (duration.left(1) == "-") { + duration = "0.0"; + } + label_Duration->setText(duration); label_JobBytes->setText(convertBytesSI(fld.next().toULongLong())); label_JobFiles->setText(fld.next()); err = fld.next(); label_JobErrors->setText(err); - stat=fld.next(); + stat = fld.next(); if (stat == "T" && err.toInt() > 0) { stat = "W"; } -- 2.39.2