X-Git-Url: http://git.pk910.de/?a=blobdiff_plain;f=ircd%2Fm_who.c;h=a9e68e2c3cd43a24a81f28314d23343d11b4d63a;hb=0e3c217d90ea9af230a002e06104c147c54ab01a;hp=d66775bd6eceb9829b837816aaa16d3cfc4dee80;hpb=f9965ec69dcade8ba683a3989b93a1d118411b87;p=ircu2.10.12-pk.git diff --git a/ircd/m_who.c b/ircd/m_who.c index d66775b..a9e68e2 100644 --- a/ircd/m_who.c +++ b/ircd/m_who.c @@ -210,6 +210,10 @@ int m_who(struct Client* cptr, struct Client* sptr, int parc, char* parv[]) case 'R': matchsel |= WHO_FIELD_REN; continue; + case 'a': + case 'A': + matchsel |= WHO_FIELD_ACC; + continue; } if (ch == '%') while ((ch = *p++) && (ch != ',')) @@ -260,6 +264,10 @@ int m_who(struct Client* cptr, struct Client* sptr, int parc, char* parv[]) case 'U': fields |= WHO_FIELD_UID; break; + case 'a': + case 'A': + fields |= WHO_FIELD_ACC; + break; default: break; }