call the callbacks with ->next (...)
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@20949 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -173,7 +173,7 @@ static status_t
|
||||
ethernet_frame_join_multicast(net_datalink_protocol *protocol,
|
||||
const sockaddr *address)
|
||||
{
|
||||
return protocol->next->module->join_multicast(protocol, address);
|
||||
return protocol->next->module->join_multicast(protocol->next, address);
|
||||
}
|
||||
|
||||
|
||||
@@ -181,7 +181,7 @@ static status_t
|
||||
ethernet_frame_leave_multicast(net_datalink_protocol *protocol,
|
||||
const sockaddr *address)
|
||||
{
|
||||
return protocol->next->module->leave_multicast(protocol, address);
|
||||
return protocol->next->module->leave_multicast(protocol->next, address);
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -134,7 +134,7 @@ static status_t
|
||||
loopback_frame_join_multicast(net_datalink_protocol *protocol,
|
||||
const sockaddr *address)
|
||||
{
|
||||
return protocol->next->module->join_multicast(protocol, address);
|
||||
return protocol->next->module->join_multicast(protocol->next, address);
|
||||
}
|
||||
|
||||
|
||||
@@ -142,7 +142,7 @@ static status_t
|
||||
loopback_frame_leave_multicast(net_datalink_protocol *protocol,
|
||||
const sockaddr *address)
|
||||
{
|
||||
return protocol->next->module->leave_multicast(protocol, address);
|
||||
return protocol->next->module->leave_multicast(protocol->next, address);
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user