From 0b0bac6d92fd43706a2e62b01d90f03264713256 Mon Sep 17 00:00:00 2001 From: Mark Spencer Date: Tue, 4 Jan 2005 14:39:24 +0000 Subject: [PATCH] Fix silly extra ! in app_queue (bug #3238) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4657 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- 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 38a550fc82..c1b89d6e01 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; }