[asterisk-commits] dhubbard: branch group/issue3450 r122593 - /team/group/issue3450/channels/
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Fri Jun 13 12:09:29 CDT 2008
Author: dhubbard
Date: Fri Jun 13 12:09:29 2008
New Revision: 122593
URL: http://svn.digium.com/view/asterisk?view=rev&rev=122593
Log:
changes to sync this branch with revision 571 of https://origsvn.digium.com/svn/libpri/team/dhubbard/issue3450. The channel identification IE is now included in SERVICE messages to conform to note 1 of TR41459 section 3.13.6.6.1
Modified:
team/group/issue3450/channels/chan_zap.c
Modified: team/group/issue3450/channels/chan_zap.c
URL: http://svn.digium.com/view/asterisk/team/group/issue3450/channels/chan_zap.c?view=diff&rev=122593&r1=122592&r2=122593
==============================================================================
--- team/group/issue3450/channels/chan_zap.c (original)
+++ team/group/issue3450/channels/chan_zap.c Fri Jun 13 12:09:29 2008
@@ -11567,9 +11567,8 @@
tmp = start;
while (tmp) {
if (tmp->pri && tmp->channel == channel) {
- ast_log(LOG_NOTICE, "about to call pri_maintenance_service(%d)\n", PRI_SPAN(PVT_TO_CHANNEL(tmp)));
- //pri_maintenance_service(tmp->pri->pri, PRI_SPAN(PVT_TO_CHANNEL(tmp)), PVT_TO_CHANNEL(tmp), changestatus);
- pri_maintenance_service(tmp->pri->pri, 2, PVT_TO_CHANNEL(tmp), changestatus);
+ ast_log(LOG_NOTICE, "about to call pri_maintenance_service(span: %d, channel: %d)\n", PRI_SPAN(PVT_TO_CHANNEL(tmp)), PVT_TO_CHANNEL(tmp));
+ pri_maintenance_service(tmp->pri->pri, PRI_SPAN(PVT_TO_CHANNEL(tmp)), PVT_TO_CHANNEL(tmp), changestatus);
ast_mutex_unlock(lock);
return CLI_SUCCESS;
}
More information about the asterisk-commits
mailing list