Skip to content
Snippets Groups Projects
Commit 981b1fc9 authored by Eric Vidal's avatar Eric Vidal :speech_balloon:
Browse files

frontend from external directory than module is declared outside the module

parent 6f9970fd
No related branches found
No related tags found
No related merge requests found
......@@ -82,8 +82,11 @@ int parse_interdependences(char const *service, char const *list, unsigned int l
if (!stralloc_0(&sa))
log_die_nomem("stralloc") ;
/** nothing to do with the exit code */
parse_frontend(sa.s, ares, areslen, info, force, conf, forced_directory, main, inmodule) ;
/** nothing to do with the exit code.
* forced_directory == 0 means that the service
* comes from an external directory of the module.
* In this case don't associated it at the module. */
parse_frontend(sa.s, ares, areslen, info, force, conf, forced_directory, main, !forced_directory ? 0 : inmodule) ;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment