2018-08-25 Patrick Linstruth <patrick@deltecent.com>

* Fixed a regression in rdcatchd(1) to change location
	of rdcatchd(1) from 'bin/rdcatchd' to 'sbin/rdcatchd'.
This commit is contained in:
Patrick Linstruth 2018-08-25 12:52:36 -07:00
parent 07396cb96d
commit 644ebae7d7
2 changed files with 4 additions and 1 deletions

View File

@ -17524,3 +17524,6 @@
2018-06-24 Fred Gleason <fredg@paravelsystems.com>
* Fixed a regression in rdlogmanager(1) that caused a segfault
when generating a log.
2018-08-25 Patrick Linstruth <patrick@deltecent.com>
* Fixed a regression in rdcatchd(1) to change location
of rdcatchd(1) from 'bin/rdcatchd' to 'sbin/rdcatchd'.

View File

@ -2733,7 +2733,7 @@ void MainObject::StartRmlRecording(int chan,int cartnum,int cutnum,int maxlen)
void MainObject::StartBatch(int id)
{
if((fork())==0) {
QString bin=QString(RD_PREFIX)+"/"+"bin/rdcatchd";
QString bin=QString(RD_PREFIX)+"/"+"sbin/rdcatchd";
execl(bin,(const char *)bin,
(const char *)QString().sprintf("--event-id=%d",id),
(char *)NULL);