diff options
Diffstat (limited to 'server/componentIGMP.c')
-rw-r--r-- | server/componentIGMP.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/componentIGMP.c b/server/componentIGMP.c index d9f8811..9ad7d30 100644 --- a/server/componentIGMP.c +++ b/server/componentIGMP.c @@ -434,7 +434,7 @@ void cComponentIGMP::IGMPStartMulticast(cMulticastGroup* Group) if (g > MULTICAST_PRIV_MIN && g <= MULTICAST_PRIV_MAX) { cChannel *channel = Channels.GetByNumber(g - MULTICAST_PRIV_MIN); Group->connection = (cConnectionIGMP*) NewClient(); - if (!Group->connection->Start(channel, Group->group)) { + if (!Group->connection->SetChannel(channel, Group->group)) { DELETENULL(Group->connection); } } |