summaryrefslogtreecommitdiffstats
path: root/src/afm-launch.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/afm-launch.c')
-rw-r--r--src/afm-launch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/afm-launch.c b/src/afm-launch.c
index d31e24b..8391943 100644
--- a/src/afm-launch.c
+++ b/src/afm-launch.c
@@ -856,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;
}