diff options
Diffstat (limited to 'media-plugins/vdr-devstatus/files/vdr-devstatus-0.4.1-recordingfound.patch')
-rw-r--r-- | media-plugins/vdr-devstatus/files/vdr-devstatus-0.4.1-recordingfound.patch | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/media-plugins/vdr-devstatus/files/vdr-devstatus-0.4.1-recordingfound.patch b/media-plugins/vdr-devstatus/files/vdr-devstatus-0.4.1-recordingfound.patch new file mode 100644 index 000000000000..984210481dc6 --- /dev/null +++ b/media-plugins/vdr-devstatus/files/vdr-devstatus-0.4.1-recordingfound.patch @@ -0,0 +1,17 @@ +Index: b/devstatus.c +=================================================================== +--- a/devstatus.c ++++ b/devstatus.c +@@ -351,7 +351,11 @@ + recordingFound = recording; + if (!recordingFound) + return osContinue; +- cReplayControl::SetRecording(recordingFound->FileName(), recordingFound->Title()); ++ #if VDRVERSNUM < 10728 ++ cReplayControl::SetRecording(recordingFound->FileName(), recordingFound->Title()); ++ #else ++ cReplayControl::SetRecording(recordingFound->FileName()); ++ #endif + return osReplay; + } + |