Index: apps/app_queue.c =================================================================== --- apps/app_queue.c (revision 82273) +++ apps/app_queue.c (working copy) @@ -4249,7 +4249,7 @@ float sl; ast_mutex_lock(&q->lock); - if (argc == 3 && strcasecmp(q->name, argv[2])) { + if (argc == 3 && strcmp(q->name, argv[2])) { ast_mutex_unlock(&q->lock); continue; } @@ -4336,7 +4336,7 @@ AST_LIST_LOCK(&queues); AST_LIST_TRAVERSE(&queues, q, list) { - if (!strncasecmp(word, q->name, wordlen) && ++which > state) { + if (!strncmp(word, q->name, wordlen) && ++which > state) { ret = ast_strdup(q->name); break; }