Skip to content
This repository has been archived by the owner on Apr 15, 2023. It is now read-only.

Commit

Permalink
vdr-plugin-vnsiserver: fix compile error after vdr 2.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
FernetMenta committed Jan 28, 2014
1 parent 0f871b2 commit 23be707
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion addons/pvr.vdr.vnsi/vdr-plugin-vnsiserver/vnsiclient.c
Expand Up @@ -205,7 +205,7 @@ void cVNSIClient::TimerChange()
}
}

void cVNSIClient::ChannelChange()
void cVNSIClient::ChannelsChange()
{
cMutexLock lock(&m_msgLock);

Expand Down
2 changes: 1 addition & 1 deletion addons/pvr.vdr.vnsi/vdr-plugin-vnsiserver/vnsiclient.h
Expand Up @@ -83,7 +83,7 @@ class cVNSIClient : public cThread
cVNSIClient(int fd, unsigned int id, const char *ClientAdr);
virtual ~cVNSIClient();

void ChannelChange();
void ChannelsChange();
void RecordingsChange();
void TimerChange();
void EpgChange();
Expand Down
2 changes: 1 addition & 1 deletion addons/pvr.vdr.vnsi/vdr-plugin-vnsiserver/vnsiserver.c
Expand Up @@ -263,7 +263,7 @@ void cVNSIServer::Action(void)
Channels.SetModified((modified == CHANNELSMOD_USER) ? true : false);
INFOLOG("Requesting clients to reload channel list");
for (ClientList::iterator i = m_clients.begin(); i != m_clients.end(); i++)
(*i)->ChannelChange();
(*i)->ChannelsChange();
}
chanTimer.Set(5000);
}
Expand Down

0 comments on commit 23be707

Please sign in to comment.