2021-07-29 Fred Gleason <fredg@paravelsystems.com>

* Fixed regressions in rdimport(1) and the WebGet service
	that threw 500 errors when connecting to WebGet.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason
2021-07-29 13:13:27 -04:00
parent 195394988a
commit 60f39a8c17
3 changed files with 12 additions and 3 deletions

View File

@@ -2340,7 +2340,8 @@ void MainObject::ErrorExit(RDApplication::ExitCode code) const
int main(int argc,char *argv[])
{
QCoreApplication a(argc,argv,false);
QCoreApplication::setSetuidAllowed(true);
QCoreApplication a(argc,argv);
new MainObject();
return a.exec();
}