X-Git-Url: http://git.pk910.de/?a=blobdiff_plain;f=ircd%2Fwhocmds.c;h=e100c1947842555c53d264b79f521a5a0ba50804;hb=e8e26a454a724eea9344e72f71f57b02758ce473;hp=584cebbbb146f098c6576067a8dcc95e38ee684b;hpb=c3727b053aa20cecf3984cc0c9c23b0140edf52c;p=ircu2.10.12-pk.git diff --git a/ircd/whocmds.c b/ircd/whocmds.c index 584cebb..e100c19 100644 --- a/ircd/whocmds.c +++ b/ircd/whocmds.c @@ -178,6 +178,8 @@ void do_who(struct Client* sptr, struct Client* acptr, struct Channel* repchan, */ if (IsChanOp(chan)) *(p1++) = '@'; + if (IsHalfOp(chan)) + *(p1++) = '%'; if (HasVoice(chan)) *(p1++) = '+'; if (IsZombie(chan)) @@ -188,6 +190,8 @@ void do_who(struct Client* sptr, struct Client* acptr, struct Channel* repchan, else { if (IsChanOp(chan)) *(p1++) = '@'; + else if (IsHalfOp(chan)) + *(p1++) = '%'; else if (HasVoice(chan)) *(p1++) = '+'; else if (IsZombie(chan))