2020-04-27 Fred Gleason <fredg@paravelsystems.com>

* Incremented the package version to 3.3.0int0.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason
2020-05-02 12:53:03 -04:00
parent 4d3e54df02
commit 23df7cbc14
6 changed files with 28 additions and 4 deletions

View File

@@ -2,7 +2,7 @@
//
// A Utility for running periodic system maintenance.
//
// (C) Copyright 2008-2019 Fred Gleason <fredg@paravelsystems.com>
// (C) Copyright 2008-2020 Fred Gleason <fredg@paravelsystems.com>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 2 as
@@ -316,7 +316,7 @@ void MainObject::PurgeStacks()
sql="select NAME from SERVICES";
q=new RDSqlQuery(sql);
while(q->next()) {
sql=QString().sprintf("select MAX(SCHED_STACK_ID) from STACK_LINES where ")+
sql=QString("select MAX(SCHED_STACK_ID) from STACK_LINES where ")+
"SERVICE_NAME=\""+RDEscapeString(q->value(0).toString())+"\"";
q1=new RDSqlQuery(sql);
if (q1->next()) {