From 433c3795aeeab5913ce0297ba25af14892e8517e Mon Sep 17 00:00:00 2001 From: Jochen Eisinger Date: Sun, 20 May 2007 16:38:28 +0000 Subject: [PATCH] add fe_common to the list of possible submodules git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4503 dbcabf3a-b0e7-0310-adc4-f8d773084564 --- src/fe-common/core/fe-modules.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/fe-common/core/fe-modules.c b/src/fe-common/core/fe-modules.c index edb16f43..4852243d 100644 --- a/src/fe-common/core/fe-modules.c +++ b/src/fe-common/core/fe-modules.c @@ -130,10 +130,11 @@ static char **module_prefixes_get(void) char **list, *name; int count; - list = g_new(char *, 2 + 3*g_slist_length(chat_protocols)); + list = g_new(char *, 3 + 3*g_slist_length(chat_protocols)); list[0] = "fe"; + list[1] = "fe_common"; - count = 1; + count = 2; for (tmp = chat_protocols; tmp != NULL; tmp = tmp->next) { CHAT_PROTOCOL_REC *rec = tmp->data;