summaryrefslogtreecommitdiff
path: root/upnpcomponents/upnpwebserver.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'upnpcomponents/upnpwebserver.cpp')
-rw-r--r--upnpcomponents/upnpwebserver.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/upnpcomponents/upnpwebserver.cpp b/upnpcomponents/upnpwebserver.cpp
index 892f5b1..b192cd9 100644
--- a/upnpcomponents/upnpwebserver.cpp
+++ b/upnpcomponents/upnpwebserver.cpp
@@ -259,8 +259,8 @@ UpnpWebFileHandle cUPnPWebServer::open(const char* filename, UpnpOpenFileMode mo
case UPNP_RESOURCE_CHANNEL:
{
char* ChannelID = strtok(strdup(Resource->getResource()),":");
- int AudioID = atoi(strtok(NULL,":"));
- MESSAGE(VERBOSE_LIVE_TV, "Try to create Receiver for Channel %s with Audio ID %d", ChannelID, AudioID);
+ int StreamID = atoi(strtok(NULL,":"));
+ MESSAGE(VERBOSE_LIVE_TV, "Try to create Receiver for Channel %s with Stream ID %d", ChannelID, StreamID);
cChannel* Channel = Channels.GetByChannelID(tChannelID::FromString(ChannelID));
if(!Channel){
ERROR("No such channel with ID %s", ChannelID);