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

Comparing ircd-hybrid/trunk/src/channel.c (file contents):
Revision 2246 by michael, Sun Jun 16 10:48:39 2013 UTC vs.
Revision 2296 by michael, Wed Jun 19 11:19:22 2013 UTC

# Line 271 | Line 271 | send_mode_list(struct Client *client_p,
271        *mp = '\0';
272      }
273  
274 <    pp += sprintf(pp, "%s!%s@%s ", banptr->name, banptr->username,
274 >    pp += sprintf(pp, "%s!%s@%s ", banptr->name, banptr->user,
275                    banptr->host);
276      cur_len += tlen;
277    }
# Line 333 | Line 333 | remove_ban(struct Ban *bptr, dlink_list
333    dlinkDelete(&bptr->node, list);
334  
335    MyFree(bptr->name);
336 <  MyFree(bptr->username);
336 >  MyFree(bptr->user);
337    MyFree(bptr->host);
338    MyFree(bptr->who);
339  
# Line 587 | Line 587 | find_bmask(const struct Client *who, con
587    {
588      const struct Ban *bp = ptr->data;
589  
590 <    if (!match(bp->name, who->name) && !match(bp->username, who->username))
590 >    if (!match(bp->name, who->name) && !match(bp->user, who->username))
591      {
592        switch (bp->type)
593        {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines