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
_______________________________________________
--Bandwidth and Colocation provided by Easynews.com --
asterisk-dev mailing list
To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-dev