From: Richard Mudgett Date: Tue, 15 Nov 2011 18:15:23 +0000 (+0000) Subject: Fix typo in sig_pri using wrong structure name. X-Git-Tag: 1.8.9.0-rc1~67 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d46a92b5b2600c81f4557601ceed7db5400722cd;p=thirdparty%2Fasterisk.git 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 git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@345370 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/sig_pri.c b/channels/sig_pri.c index dba3eef323..5b6f40c8b8 100644 --- a/channels/sig_pri.c +++ b/channels/sig_pri.c @@ -4841,7 +4841,7 @@ static void *pri_dchannel(void *vpri) } 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,