2019-08-26 Fred Gleason <fredg@paravelsystems.com>

* Fixed a bug in rdalsaconfig(8) that caused a 'Service not
	active' error to be generated at startup.
This commit is contained in:
Fred Gleason 2019-08-26 14:03:01 -04:00
parent c2e410f637
commit 4f9b800379
2 changed files with 4 additions and 1 deletions

View File

@ -18953,3 +18953,6 @@
2019-08-26 Fred Gleason <fredg@paravelsystems.com>
* Updated rdalsaconfig(8) to include a 'rate <sr>' line in
each asound.conf(5) entry.
2019-08-26 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in rdalsaconfig(8) that caused a 'Service not
active' error to be generated at startup.

View File

@ -87,7 +87,7 @@ MainWidget::MainWidget(QWidget *parent)
// Open the Database
//
rda=new RDApplication("RDAlsaConfig","rdalsaconfig",RDALSACONFIG_USAGE,this);
if(!rda->open(&err_msg)) {
if(!rda->open(&err_msg,NULL,false)) {
QMessageBox::critical(this,"RDAlsaConfig - "+tr("Error"),err_msg);
exit(1);
}