2019-01-09 Fred Gleason <fredg@paravelsystems.com>

* Fixed a regression in rdpadengined(8) that caused process
	restarts to fail.
This commit is contained in:
Fred Gleason 2019-01-09 17:26:09 -05:00
parent e8a14caf53
commit 23f10de6c9
2 changed files with 3 additions and 1 deletions

View File

@ -18347,3 +18347,6 @@
* Changed the value of RD_DEFAULT_PYPAD_GROUP to 'pypad'.
* Fixed a bug that caused creation of the 'pypad' system user
to fail.
2019-01-09 Fred Gleason <fredg@paravelsystems.com>
* Fixed a regression in rdpadengined(8) that caused process
restarts to fail.

View File

@ -252,7 +252,6 @@ void MainObject::StartScript(unsigned id,const QString &script_path)
connect(proc,SIGNAL(started(int)),this,SLOT(instanceStartedData(int)));
connect(proc,SIGNAL(finished(int)),this,SLOT(instanceFinishedData(int)));
QStringList args;
args.push_back("-u");
args.push_back(script_path);
args.push_back("localhost");
args.push_back(QString().sprintf("%u",RD_PAD_CLIENT_TCP_PORT));