[asterisk-commits] kharwell: branch group/pimp_my_sip r385864 - /team/group/pimp_my_sip/channels/
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Tue Apr 16 10:53:47 CDT 2013
Author: kharwell
Date: Tue Apr 16 10:53:45 2013
New Revision: 385864
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=385864
Log:
Modified the fast fast picture update request handler to always send through the session (using ast_sip_session_send_request instead of ast_sip_send_request)
Modified:
team/group/pimp_my_sip/channels/chan_gulp.c
Modified: team/group/pimp_my_sip/channels/chan_gulp.c
URL: http://svnview.digium.com/svn/asterisk/team/group/pimp_my_sip/channels/chan_gulp.c?view=diff&rev=385864&r1=385863&r2=385864
==============================================================================
--- team/group/pimp_my_sip/channels/chan_gulp.c (original)
+++ team/group/pimp_my_sip/channels/chan_gulp.c Tue Apr 16 10:53:45 2013
@@ -694,10 +694,7 @@
ast_log(LOG_ERROR, "Could not add body to text video update INFO request\n");
return -1;
}
- if (ast_sip_send_request(tdata, session->inv_session->dlg, session->endpoint)) {
- ast_log(LOG_ERROR, "Could not send text video update INFO request\n");
- return -1;
- }
+ ast_sip_session_send_request(session, tdata);
return 0;
}
More information about the asterisk-commits
mailing list