diff --git a/ChangeLog b/ChangeLog index aaf74cf5..29983662 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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 + * Fixed a regression in rdpadengined(8) that caused process + restarts to fail. diff --git a/rdpadengined/rdpadengined.cpp b/rdpadengined/rdpadengined.cpp index 95273bea..02f86eb3 100644 --- a/rdpadengined/rdpadengined.cpp +++ b/rdpadengined/rdpadengined.cpp @@ -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));