[asterisk-commits] qwell: branch qwell/queue_events r390123 - /team/qwell/queue_events/apps/

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Thu May 30 12:09:46 CDT 2013


Author: qwell
Date: Thu May 30 12:09:44 2013
New Revision: 390123

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=390123
Log:
Fix a typo and use the correct type for sending out messages.

Modified:
    team/qwell/queue_events/apps/app_queue.c

Modified: team/qwell/queue_events/apps/app_queue.c
URL: http://svnview.digium.com/svn/asterisk/team/qwell/queue_events/apps/app_queue.c?view=diff&rev=390123&r1=390122&r2=390123
==============================================================================
--- team/qwell/queue_events/apps/app_queue.c (original)
+++ team/qwell/queue_events/apps/app_queue.c Thu May 30 12:09:44 2013
@@ -1911,7 +1911,7 @@
 {
 	RAII_VAR(struct stasis_message *, msg, NULL, ao2_cleanup);
 
-	msg = ast_channel_blob_create(chan, ast_channel_varset_type(), blob);
+	msg = ast_channel_blob_create(chan, type, blob);
 
 	if (!msg) {
 		return;




More information about the asterisk-commits mailing list