diff options
author | Frank Schmirler <vdr@schmirler.de> | 2011-11-07 17:15:10 +0100 |
---|---|---|
committer | Frank Schmirler <vdr@schmirler.de> | 2011-11-07 17:15:10 +0100 |
commit | 6c9c6ca77f2ec64eaa90b355ed037d6fdcc0e763 (patch) | |
tree | b3e508e1253c33c456e7bfd52db4472bffbf719d | |
parent | 9cb72968f62b4efeb9f0a703cb61269b3dd660aa (diff) | |
download | vdr-plugin-streamdev-6c9c6ca77f2ec64eaa90b355ed037d6fdcc0e763.tar.gz vdr-plugin-streamdev-6c9c6ca77f2ec64eaa90b355ed037d6fdcc0e763.tar.bz2 |
restricted VTP command RENR to liemikuutio patch < 1.32 (fixes #786).
Build fails with newer versions of this patch. RENR was introduced for XBMC
which is no longer using streamdev at all, so the impact should be low.
-rw-r--r-- | CONTRIBUTORS | 1 | ||||
-rw-r--r-- | HISTORY | 2 | ||||
-rw-r--r-- | server/connectionVTP.c | 4 |
3 files changed, 5 insertions, 2 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 64bf867..6674b70 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -195,3 +195,4 @@ Lubo¨ Dole¸el Ville Skyttä for updating the outdated COPYING file and FSF address + for restricting VTP command RENR to liemikuutio patch < 1.32 @@ -1,6 +1,8 @@ VDR Plugin 'streamdev' Revision History --------------------------------------- +- restricted VTP command RENR to liemikuutio patch < 1.32. Build fails with + newer versions of this patch (thanks to Ville Skyttä) - updated outdated COPYING file and FSF address (thanks to Ville Skyttä) - include SDT and TDT in TS streams - the icy-name HTTP header sent with radio streams makes VLC pick the wrong diff --git a/server/connectionVTP.c b/server/connectionVTP.c index 8224d1d..9ffa540 100644 --- a/server/connectionVTP.c +++ b/server/connectionVTP.c @@ -1750,7 +1750,7 @@ bool cConnectionVTP::CmdDELR(const char *Option) bool cConnectionVTP::CmdRENR(const char *Option) { INIT_WRAPPER(); -#if defined(LIEMIKUUTIO) +#if defined(LIEMIKUUTIO) && LIEMIKUUTIO < 132 bool recordings = Recordings.Update(true); if (recordings) { if (*Option) { @@ -1790,7 +1790,7 @@ bool cConnectionVTP::CmdRENR(const char *Option) Reply(550, "No recordings available"); } #else - Reply(501, "Rename not supported, please use LIEMIEXT"); + Reply(501, "Rename not supported, please use LIEMIKUUTIO < 1.32"); #endif /* LIEMIKUUTIO */ EXIT_WRAPPER(); } |