mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-05 20:20:07 +00:00
Fix silly extra ! in app_queue (bug #3238)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4657 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user