2017-10-14 Fred Gleason <fredg@paravelsystems.com>

* Fixed a bug in RDStation that caused matrix parameters to
	fail to be copied as part of the profile of a new host.
This commit is contained in:
Fred Gleason
2017-10-14 20:04:45 -04:00
parent 8eec028194
commit ee211e5fca

View File

@@ -1530,9 +1530,9 @@ bool RDStation::create(const QString &name,QString *err_msg,
// Clone Host Variables
//
sql=QString("select ")+
"NAME,"+
"VARVALUE,"+
"REMARK "+
"NAME,"+ // 00
"VARVALUE,"+ // 01
"REMARK "+ // 02
"from HOSTVARS where "+
"STATION_NAME=\""+RDEscapeString(exemplar)+"\"";
q=new RDSqlQuery(sql);