about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2012-09-23 19:23:23 +0200
committerAlexander Barton <alex@barton.de>2012-09-23 19:23:23 +0200
commitfc39146f48f556de0a26693cd4275667d3f82ab2 (patch)
tree29ed87c002057189c810e4d6359b5bf56623fa88
parent1744a8d145c35edbb4abf093dd7336ecde4965d5 (diff)
downloadngircd-fc39146f48f556de0a26693cd4275667d3f82ab2.tar.gz
ngircd-fc39146f48f556de0a26693cd4275667d3f82ab2.zip
Fix prefix of "halfop" when "multi-prefix" is active
-rw-r--r--src/ngircd/irc-info.c2
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);