1
0
mirror of https://github.com/irssi/irssi.git synced 2024-08-04 03:34:18 -04:00

default level for /EXEC should be CLIENTCRAP, not CLIENTNOTICE.

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2155 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2001-11-27 13:56:00 +00:00 committed by cras
parent dd408a959d
commit 698f7b9ea7

View File

@ -493,7 +493,7 @@ static void handle_exec(const char *args, GHashTable *optlist,
rec->name = g_strdup(g_hash_table_lookup(optlist, "name"));
level = g_hash_table_lookup(optlist, "level");
rec->level = level == NULL ? MSGLEVEL_CLIENTNOTICE : level2bits(level);
rec->level = level == NULL ? MSGLEVEL_CLIENTCRAP : level2bits(level);
rec->read_tag = g_input_add(rec->in, G_INPUT_READ,
(GInputFunction) sig_exec_input_reader,