1
0
mirror of https://github.com/irssi/irssi.git synced 2024-09-01 04:14:16 -04:00

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
This commit is contained in:
Jochen Eisinger 2007-05-20 16:38:28 +00:00 committed by c0ffee
parent 9dc678e1d3
commit 433c3795ae

View File

@ -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;