X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fafm-launch.c;h=839194340389e7f8e2c1bb9489cfb59246c6f43e;hb=c6b2074e18ce7a37a59bc1c3831407b42b18c889;hp=cdfdc41f91e056d0b4983397ac409518042b8e88;hpb=cd4ba256dd488e6dc4ebffdaa6dfcfe107c35908;p=src%2Fapp-framework-main.git diff --git a/src/afm-launch.c b/src/afm-launch.c index cdfdc41..8391943 100644 --- a/src/afm-launch.c +++ b/src/afm-launch.c @@ -109,6 +109,7 @@ static const char readystr[] = "READY=1"; */ static const int ready_timeout = 1500; +#if defined(DUMP_LAUNCHERS) /* * dump all the known launchers to the 'file' */ @@ -132,6 +133,7 @@ static void dump_launchers(FILE *file) fprintf(file, "\n"); } } +#endif /* * update 'cread' to point the the next token @@ -854,7 +856,7 @@ static struct desc_launcher *search_launcher(const char *type, for (dl = launchers ; dl ; dl = dl->next) if (dl->mode == mode) for (tl = dl->types ; tl != NULL ; tl = tl->next) - if (!strcmp(tl->type, type)) + if (!strcasecmp(tl->type, type)) return dl; return NULL; } @@ -942,7 +944,10 @@ int afm_launch_initialize() /* reads the configuration file */ rc = read_configuration_file(FWK_LAUNCH_CONF); - /* dump_launchers(stderr); */ +#if defined(DUMP_LAUNCHERS) + if (!rc) + dump_launchers(stderr); +#endif return rc; }