commit 398022631a573a2b8de7811cacb6c202e90f263e from: Alexander Barton date: Sun Dec 13 18:55:47 2015 UTC 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! commit - f2cef85fde733d332b6ae3083274fd1165ca6ce2 commit + 398022631a573a2b8de7811cacb6c202e90f263e blob - 92186aff7fcdbae8d8a7e5c02f7c177e1d231281 blob + 265a9859e04bfaa95b06d53d2cbce02b26767d16 --- 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++; }