summaryrefslogtreecommitdiff
path: root/src/core/expandos.c
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2003-12-10 22:51:28 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2003-12-10 22:51:28 +0000
commitfe6b2d6d3ad72856f95a709dc40420cb4099a4db (patch)
tree90a79cc66fa377a8840946eb6c703c84d0d630f6 /src/core/expandos.c
parentae7f177fb0ac0732239d3ff1b8dd208a31a7354d (diff)
downloadirssi-fe6b2d6d3ad72856f95a709dc40420cb4099a4db.zip
chanmode_expando_strip setting was reversed - patch by c0ffee
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3191 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/core/expandos.c')
-rw-r--r--src/core/expandos.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/expandos.c b/src/core/expandos.c
index da04f88b..eb8ebed6 100644
--- a/src/core/expandos.c
+++ b/src/core/expandos.c
@@ -342,7 +342,7 @@ static char *expando_chanmode(SERVER_REC *server, void *item, int *free_ret)
if (!IS_CHANNEL(item))
return NULL;
- if (settings_get_bool("chanmode_expando_strip"))
+ if (!settings_get_bool("chanmode_expando_strip"))
return CHANNEL(item)->mode;
*free_ret = TRUE;
@@ -575,7 +575,7 @@ void expandos_init(void)
#endif
settings_add_str("misc", "STATUS_OPER", "*");
settings_add_str("lookandfeel", "timestamp_format", "%H:%M");
- settings_add_bool("lookandfeel", "chanmode_expando_strip", TRUE);
+ settings_add_bool("lookandfeel", "chanmode_expando_strip", FALSE);
client_start_time = time(NULL);
last_sent_msg = NULL; last_sent_msg_body = NULL;