diff --git a/src/fe-common/core/fe-modules.c b/src/fe-common/core/fe-modules.c index 5bbcf0b5..3c3c9790 100644 --- a/src/fe-common/core/fe-modules.c +++ b/src/fe-common/core/fe-modules.c @@ -130,7 +130,7 @@ static char **module_prefixes_get(void) char **list, *name; int count; - list = g_new(char *, 2 + 2*g_slist_length(chat_protocols)); + list = g_new(char *, 2 + 3*g_slist_length(chat_protocols)); list[0] = "fe"; count = 1; @@ -142,6 +142,7 @@ static char **module_prefixes_get(void) list[count++] = name; list[count++] = g_strconcat("fe_", name, NULL); + list[count++] = g_strconcat("fe_common_", name, NULL); } list[count] = NULL;