diff options
| author | Alexander Barton <alex@barton.de> | 2012-09-23 19:23:23 +0200 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2012-09-23 19:23:23 +0200 |
| commit | fc39146f48f556de0a26693cd4275667d3f82ab2 (patch) | |
| tree | 29ed87c002057189c810e4d6359b5bf56623fa88 | |
| parent | 1744a8d145c35edbb4abf093dd7336ecde4965d5 (diff) | |
| download | ngircd-fc39146f48f556de0a26693cd4275667d3f82ab2.tar.gz ngircd-fc39146f48f556de0a26693cd4275667d3f82ab2.zip | |
Fix prefix of "halfop" when "multi-prefix" is active
| -rw-r--r-- | src/ngircd/irc-info.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |