[asterisk-commits] rmudgett: trunk r345375 - in /trunk: ./ channels/sig_pri.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Tue Nov 15 12:18:16 CST 2011
Author: rmudgett
Date: Tue Nov 15 12:18:11 2011
New Revision: 345375
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=345375
Log:
Fix typo in sig_pri using wrong structure name.
It is fortunate that the typo does not alter generated code since the
e->restart.channel and e->ring.channel members are in the same position.
(closes issue ASTERISK-18868)
Reported by: zvision
Patches:
sig_pri.c.diff (License #5755) patch uploaded by zvision
........
Merged revisions 345370 from http://svn.asterisk.org/svn/asterisk/branches/1.8
........
Merged revisions 345371 from http://svn.asterisk.org/svn/asterisk/branches/10
Modified:
trunk/ (props changed)
trunk/channels/sig_pri.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-10-merged' - no diff available.
Modified: trunk/channels/sig_pri.c
URL: http://svnview.digium.com/svn/asterisk/trunk/channels/sig_pri.c?view=diff&rev=345375&r1=345374&r2=345375
==============================================================================
--- trunk/channels/sig_pri.c (original)
+++ trunk/channels/sig_pri.c Tue Nov 15 12:18:11 2011
@@ -5692,7 +5692,7 @@
}
break;
case PRI_EVENT_RESTART:
- if (e->restart.channel > -1 && PRI_CHANNEL(e->ring.channel) != 0xFF) {
+ if (e->restart.channel > -1 && PRI_CHANNEL(e->restart.channel) != 0xFF) {
chanpos = pri_find_principle(pri, e->restart.channel, NULL);
if (chanpos < 0)
ast_log(LOG_WARNING,
More information about the asterisk-commits
mailing list