ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/branches/8.2.x/modules/m_kline.c
(Generate patch)

Comparing ircd-hybrid/branches/8.2.x/modules/m_kline.c (file contents):
Revision 4815 by michael, Sun Sep 28 17:26:43 2014 UTC vs.
Revision 4816 by michael, Sat Nov 1 15:29:49 2014 UTC

# Line 46 | Line 46
46   static void
47   check_kline(struct AddressRec *arec)
48   {
49 <  dlink_node *ptr = NULL, *ptr_next = NULL;
49 >  dlink_node *node = NULL, *node_next = NULL;
50  
51 <  DLINK_FOREACH_SAFE(ptr, ptr_next, local_client_list.head)
51 >  DLINK_FOREACH_SAFE(node, node_next, local_client_list.head)
52    {
53 <    struct Client *client_p = ptr->data;
53 >    struct Client *client_p = node->data;
54  
55      if (IsDead(client_p))
56        continue;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines