[Home]

Summary:ASTERISK-03670: Rev 1.416 of chan_zap.c breaks compile
Reporter:robf (robf)Labels:
Date Opened:2005-03-11 11:14:56.000-0600Date Closed:2005-03-11 11:28:15.000-0600
Priority:MinorRegression?No
Status:Closed/CompleteComponents:Core/General
Versions:Frequency of
Occurrence
Related
Issues:
Environment:Attachments:
Description:Latest CVS rev of chan_zap.c breaks compile with:

chan_zap.c: In function `zt_bridge':
chan_zap.c:2879: error: structure has no member named `tranfer'

(typo)
Comments:By: robf (robf) 2005-03-11 11:17:40.000-0600

Patch:

$ cvs diff -u chan_zap.c
Index: chan_zap.c
===================================================================
RCS file: /usr/cvsroot/asterisk/channels/chan_zap.c,v
retrieving revision 1.416
diff -u -r1.416 chan_zap.c
--- chan_zap.c  11 Mar 2005 07:26:55 -0000      1.416
+++ chan_zap.c  11 Mar 2005 16:19:32 -0000
@@ -2876,7 +2876,7 @@
#ifdef PRI_2BCT
               q931c0 = p0->call;
               q931c1 = p1->call;
-               if (p0->tranfer && p1->transfer
+               if (p0->transfer && p1->transfer
                               && q931c0 && q931c1
                               && !triedtopribridge) {

By: robf (robf) 2005-03-11 11:20:56.000-0600

Looks like it just got fixed in CVS...

By: Russell Bryant (russell) 2005-03-11 11:28:03.000-0600

yep :)