diff options
author | Jochen Eisinger <c0ffee@irssi.org> | 2007-05-20 16:38:28 +0000 |
---|---|---|
committer | c0ffee <c0ffee@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2007-05-20 16:38:28 +0000 |
commit | 433c3795aeeab5913ce0297ba25af14892e8517e (patch) | |
tree | 4b18d6a27e0188010217b1a3a99ddab856acce76 /src/fe-common/core | |
parent | 9dc678e1d31e85af455f6b7c54dcfaa6e6b66c68 (diff) | |
download | irssi-433c3795aeeab5913ce0297ba25af14892e8517e.zip |
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
Diffstat (limited to 'src/fe-common/core')
-rw-r--r-- | src/fe-common/core/fe-modules.c | 5 |
1 files 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; |