diff --git a/src/frontend/control.c b/src/frontend/control.c index b87a21978..ba684060e 100644 --- a/src/frontend/control.c +++ b/src/frontend/control.c @@ -195,7 +195,7 @@ docommand(wordlist *wlist) /* Look for the command in the command list. */ for (i = 0; cp_coms[i].co_comname; i++) - if (strcmp(cp_coms[i].co_comname, s) == 0) + if (strcasecmp(cp_coms[i].co_comname, s) == 0) break; command = &cp_coms[i];