mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-11-29 08:40:12 +01:00
2022-05-25 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in rdlogmanager(1) that could cause report generation to fail on systems that generate process IDs higher than 999999. Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
@@ -424,7 +424,7 @@ bool RDReport::generateReport(const QDate &startdate,const QDate &enddate,
|
||||
//
|
||||
// Generate Mixdown ID
|
||||
//
|
||||
QString mixname=QString::asprintf("MIX-%d",getpid());
|
||||
QString mixname=QString::asprintf("MX%d",getpid());
|
||||
|
||||
//
|
||||
// Iterate Selected Services
|
||||
|
||||
Reference in New Issue
Block a user