mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-05-23 08:01:41 +02:00
2021-06-02 Fred Gleason <fredg@paravelsystems.com>
* Cleaned up compile warnings in rdcatchd(8). Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
parent
0a0834666f
commit
8c3e303725
@ -21824,3 +21824,5 @@
|
|||||||
* Cleaned up compile warnings in 'lib/rdunixserver.cpp'.
|
* Cleaned up compile warnings in 'lib/rdunixserver.cpp'.
|
||||||
2021-06-02 Fred Gleason <fredg@paravelsystems.com>
|
2021-06-02 Fred Gleason <fredg@paravelsystems.com>
|
||||||
* Cleaned up compile warnings in rdcatch(1).
|
* Cleaned up compile warnings in rdcatch(1).
|
||||||
|
2021-06-02 Fred Gleason <fredg@paravelsystems.com>
|
||||||
|
* Cleaned up compile warnings in rdcatchd(8).
|
||||||
|
@ -369,7 +369,9 @@ void MainObject::RunUpload(CatchEvent *evt)
|
|||||||
(const char *)evt->tempName().toUtf8());
|
(const char *)evt->tempName().toUtf8());
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
chown(evt->tempName().toUtf8(),rda->config()->uid(),rda->config()->gid());
|
RDCheckExitCode("batch.cpp chown",chown(evt->tempName().toUtf8(),
|
||||||
|
rda->config()->uid(),
|
||||||
|
rda->config()->gid()));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2341,8 +2341,9 @@ void MainObject::CheckInRecording(QString cutname,CatchEvent *evt,
|
|||||||
cart->updateLength();
|
cart->updateLength();
|
||||||
delete cart;
|
delete cart;
|
||||||
delete cut;
|
delete cut;
|
||||||
chown(RDCut::pathName(cutname).toUtf8(),rda->config()->uid(),
|
RDCheckExitCode("rdcatchd.cpp chown",chown(RDCut::pathName(cutname).toUtf8(),
|
||||||
rda->config()->gid());
|
rda->config()->uid(),
|
||||||
|
rda->config()->gid()));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user