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

Comparing ircd-hybrid-8/src/channel.c (file contents):
Revision 1435 by michael, Fri Jun 15 18:35:37 2012 UTC vs.
Revision 1455 by michael, Fri Jun 29 14:16:12 2012 UTC

# Line 310 | Line 310 | int
310   check_channel_name(const char *name, int local)
311   {
312    const char *p = name;
313 <  int max_length = local ? LOCAL_CHANNELLEN : CHANNELLEN;
313 >  const int max_length = local ? LOCAL_CHANNELLEN : CHANNELLEN;
314    assert(name != NULL);
315  
316    if (!IsChanPrefix(*p))
# Line 596 | Line 596 | find_bmask(const struct Client *who, con
596  
597    DLINK_FOREACH(ptr, list->head)
598    {
599 <    struct Ban *bp = ptr->data;
599 >    const struct Ban *bp = ptr->data;
600  
601      if (match(bp->name, who->name) && match(bp->username, who->username))
602      {

Diff Legend

Removed lines
+ Added lines
< Changed lines (old)
> Changed lines (new)