summaryrefslogtreecommitdiff
path: root/src/fe-common
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2001-11-27 13:56:00 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2001-11-27 13:56:00 +0000
commit698f7b9ea7540bff32ff6b1dd738ce39c8bdac05 (patch)
treec5d2c4e0bccf0bd92beeaeca317c43b7f46d3d1c /src/fe-common
parentdd408a959d45b297f30c56e4015434a3aa63c543 (diff)
downloadirssi-698f7b9ea7540bff32ff6b1dd738ce39c8bdac05.zip
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
Diffstat (limited to 'src/fe-common')
-rw-r--r--src/fe-common/core/fe-exec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fe-common/core/fe-exec.c b/src/fe-common/core/fe-exec.c
index 388f88ac..4d9152ec 100644
--- a/src/fe-common/core/fe-exec.c
+++ b/src/fe-common/core/fe-exec.c
@@ -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,