2022-09-06 Fred Gleason <fredg@paravelsystems.com>

* Fixed a bug in rdrssd(8) that caused incorrect error data to be
	logged.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason 2022-09-06 15:07:14 -04:00
parent 87f7975a86
commit 1145ad4f7a
2 changed files with 7 additions and 2 deletions

View File

@ -23250,3 +23250,6 @@
2022-09-06 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in rdlogmanager(1) that could cause a segfault when
merging a log.
2022-09-06 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in rdrssd(8) that caused incorrect error data to be
logged.

View File

@ -186,8 +186,10 @@ void MainObject::ProcessFeed(const QString &key_name)
}
}
else {
rda->syslog(LOG_WARNING,"repost of XML for feed \"%s\" failed");
}
rda->syslog(LOG_WARNING,
"repost of XML for feed \"%s\" triggered by cast id %u failed",
key_name.toUtf8().constData(),q->value(0).toUInt());
}
}
delete q;