mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-04 20:04:50 +00:00
Merged revisions 89844 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r89844 | russell | 2007-11-27 17:21:13 -0600 (Tue, 27 Nov 2007) | 3 lines Instead of depending on the return value of ast_true(), explicitly set the eventwhencalled variable to 1. ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@89847 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -1112,7 +1112,7 @@ static void queue_set_param(struct call_queue *q, const char *param, const char
|
||||
if (!strcasecmp(val, "vars")) {
|
||||
q->eventwhencalled = QUEUE_EVENT_VARIABLES;
|
||||
} else {
|
||||
q->eventwhencalled = -(ast_true(val));
|
||||
q->eventwhencalled = ast_true(val) ? 1 : 0;
|
||||
}
|
||||
} else if (!strcasecmp(param, "reportholdtime")) {
|
||||
q->reportholdtime = ast_true(val);
|
||||
|
Reference in New Issue
Block a user