2019-02-19 Fred Gleason <fredg@paravelsystems.com>

* Fixed a bug in rdadmin(1) that threw a SQL error when deleting
	a host entry.
This commit is contained in:
Fred Gleason 2019-02-19 18:04:21 -05:00
parent 528d4f3f1f
commit b7cdc4f838
2 changed files with 4 additions and 1 deletions

View File

@ -18505,3 +18505,6 @@
2019-02-19 Fred Gleason <fredg@paravelsystems.com>
* Fixed a regression in rdadmin(1) that caused cloning of an
existing service to fail.
2019-02-19 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in rdadmin(1) that threw a SQL error when deleting
a host entry.

View File

@ -1994,7 +1994,7 @@ void RDStation::remove(const QString &name)
q=new RDSqlQuery(sql);
delete q;
sql=QString("delete from NOWNEXT_PLUGINS where ")+
sql=QString("delete from PYPAD_INSTANCES where ")+
"STATION_NAME=\""+RDEscapeString(name)+"\"";
q=new RDSqlQuery(sql);
delete q;