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/trunk/src/channel.c (file contents):
Revision 3723 by michael, Wed May 14 15:03:00 2014 UTC vs.
Revision 3724 by michael, Sat May 31 16:27:09 2014 UTC

# Line 164 | Line 164 | send_members(struct Client *client_p, st
164  
165      if (ms->flags & CHFL_CHANOP)
166        ++tlen;
167 #ifdef HALFOPS
167      if (ms->flags & CHFL_HALFOP)
168        ++tlen;
170 #endif
169      if (ms->flags & CHFL_VOICE)
170        ++tlen;
171  
# Line 184 | Line 182 | send_members(struct Client *client_p, st
182  
183      if (ms->flags & CHFL_CHANOP)
184        *t++ = '@';
187 #ifdef HALFOPS
185      if (ms->flags & CHFL_HALFOP)
186        *t++ = '%';
190 #endif
187      if (ms->flags & CHFL_VOICE)
188        *t++ = '+';
189  
# Line 542 | Line 538 | get_member_status(const struct Membershi
538      *p++ = '@';
539    }
540  
545 #ifdef HALFOPS
541    if (ms->flags & CHFL_HALFOP)
542    {
543      if (!combine)
544        return "%";
545      *p++ = '%';
546    }
552 #endif
547  
548    if (ms->flags & CHFL_VOICE)
549      *p++ = '+';

Diff Legend

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