From c99486dda4c952df7f4649c550a41f016aaea270 Mon Sep 17 00:00:00 2001 From: markster Date: Tue, 4 Jan 2005 14:39:24 +0000 Subject: Fix silly extra ! in app_queue (bug #3238) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@4657 f38db490-d61c-443f-a65b-d21fe96a405b --- apps/app_queue.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/app_queue.c b/apps/app_queue.c index 38a550fc8..c1b89d6e0 100755 --- a/apps/app_queue.c +++ b/apps/app_queue.c @@ -1925,7 +1925,7 @@ static int queue_exec(struct ast_channel *chan, void *data) /* Our queue entry */ struct queue_ent qe; - if (!data || !ast_strlen_zero(data)) { + if (!data || ast_strlen_zero(data)) { ast_log(LOG_WARNING, "Queue requires an argument: queuename[|options[|URL][|announceoverride][|timeout]]\n"); return -1; } -- cgit v1.2.3