From: Alexander Barton Date: Sun, 23 Sep 2012 17:23:23 +0000 (+0200) Subject: Fix prefix of "halfop" when "multi-prefix" is active X-Git-Tag: rel-20-rc1~76^2~1 X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=ngircd-alex.git;a=commitdiff_plain;h=fc39146f48f556de0a26693cd4275667d3f82ab2;ds=sidebyside Fix prefix of "halfop" when "multi-prefix" is active --- diff --git a/src/ngircd/irc-info.c b/src/ngircd/irc-info.c index a1bebb4f..b4c951f3 100644 --- a/src/ngircd/irc-info.c +++ b/src/ngircd/irc-info.c @@ -820,7 +820,7 @@ who_flags_qualifier(CLIENT *Client, const char *chan_user_modes, char *str, size if (strchr(chan_user_modes, 'o')) strlcat(str, "@", len); if (strchr(chan_user_modes, 'h')) - strlcat(str, "&", len); + strlcat(str, "%", len); if (strchr(chan_user_modes, 'v')) strlcat(str, "+", len);