[asterisk-dev] app_queue::eventwhencalled
John Martin
John.Martin at AuPix.com
Wed Jul 26 12:09:18 MST 2006
In trunk of app_queue.c since r35504(22nd June):
Have I got the purpose of eventwhencalled wrong or should the second
strcasecmp in the following code be a !strcasecmp...
} else if (!strcasecmp(param, "eventwhencalled")) {
if (strcasecmp(val, "vars")) {
q->eventwhencalled = QUEUE_EVENT_VARIABLES;
so should be...
} else if (!strcasecmp(param, "eventwhencalled")) {
if (!strcasecmp(val, "vars")) {
q->eventwhencalled = QUEUE_EVENT_VARIABLES;
John
AuPix
More information about the asterisk-dev
mailing list