aboutsummaryrefslogtreecommitdiffstats
path: root/irc_channel.c
diff options
context:
space:
mode:
authordequis <dx@dxzone.com.ar>2016-12-24 01:56:45 -0300
committerdequis <dx@dxzone.com.ar>2016-12-25 21:18:55 -0300
commit90254d0d6daa664707503f5c909198aefdc1151c (patch)
treeee200e261a20d92cbbaddcb6b851c9051a27c3c6 /irc_channel.c
parent0483e1e6e3954787058aff78223cb758f0074f2d (diff)
Add nick_lowercase and nick_underscores settings
Diffstat (limited to 'irc_channel.c')
-rw-r--r--irc_channel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/irc_channel.c b/irc_channel.c
index 3ccbce55..e2c77fc5 100644
--- a/irc_channel.c
+++ b/irc_channel.c
@@ -637,7 +637,7 @@ char *irc_channel_name_gen(irc_t *irc, const char *hint)
irc_channel_name_strip(name);
- if (set_getbool(&irc->b->set, "lcnicks")) {
+ if (set_getbool(&irc->b->set, "nick_lowercase")) {
nick_lc(irc, name + 1);
}