Commit Diff
- Commit:
398022631a573a2b8de7811cacb6c202e90f263e
- From:
- Alexander Barton <alex@barton.de>
- Date:
- Message:
- Fix NJOIN not propagating "half ops" status ngIRCd tested for the wrong prefix of "half ops" when processing NJOIN commands and therefore never classified a remote user as "half op". Thanks to wowaname for pointing this out on #ngircd!
- Actions:
- Patch | Tree
--- src/ngircd/irc-server.c +++ src/ngircd/irc-server.c @@ -264,7 +264,7 @@ IRC_NJOIN( CLIENT *Client, REQUEST *Req ) if( *ptr == '~' ) is_owner = true; if( *ptr == '&' ) is_chanadmin = true; if( *ptr == '@' ) is_op = true; - if( *ptr == 'h' ) is_halfop = true; + if( *ptr == '%' ) is_halfop = true; if( *ptr == '+' ) is_voiced = true; ptr++; }