summaryrefslogtreecommitdiff
path: root/apps/app_queue.c
diff options
context:
space:
mode:
authorMark Michelson <mmichelson@digium.com>2008-01-31 22:12:50 +0000
committerMark Michelson <mmichelson@digium.com>2008-01-31 22:12:50 +0000
commitb0999f3bfaf1a15d0dd319f64c7e581c0d88d4a3 (patch)
tree0c384584c3adcab69f6717808808f3309bf49525 /apps/app_queue.c
parent19d8ce4033426d2a7223830ce15a94d1cbeb52c1 (diff)
Forgot an !
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@101580 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps/app_queue.c')
-rw-r--r--apps/app_queue.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_queue.c b/apps/app_queue.c
index 8e9805a8d..3eb4ae567 100644
--- a/apps/app_queue.c
+++ b/apps/app_queue.c
@@ -1437,7 +1437,7 @@ static struct call_queue *find_queue_by_name_rt(const char *queuename, struct as
* will allocate the members properly
*/
for (tmpvar = queue_vars; tmpvar; tmpvar = tmpvar->next) {
- if (strcasecmp(tmpvar->name, "strategy")) {
+ if (!strcasecmp(tmpvar->name, "strategy")) {
q->strategy = strat2int(tmpvar->value);
if (q->strategy < 0) {
ast_log(LOG_WARNING, "'%s' isn't a valid strategy for queue '%s', using ringall instead\n",