[asterisk-commits] file: trunk r69806 - in /trunk: ./ main/callerid.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Mon Jun 18 16:58:38 CDT 2007
Author: file
Date: Mon Jun 18 16:58:37 2007
New Revision: 69806
URL: http://svn.digium.com/view/asterisk?view=rev&rev=69806
Log:
Merged revisions 69805 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4
........
r69805 | file | 2007-06-18 17:57:10 -0400 (Mon, 18 Jun 2007) | 2 lines
Fix for building on PowerPC under Linux.
........
Modified:
trunk/ (props changed)
trunk/main/callerid.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.
Modified: trunk/main/callerid.c
URL: http://svn.digium.com/view/asterisk/trunk/main/callerid.c?view=diff&rev=69806&r1=69805&r2=69806
==============================================================================
--- trunk/main/callerid.c (original)
+++ trunk/main/callerid.c Mon Jun 18 16:58:37 2007
@@ -631,7 +631,8 @@
default:
ast_log(LOG_NOTICE, "Unknown IE %d\n", cid->rawdata[x - 1]);
}
- if(0 > cid->rawdata[x]){ /* Negative offset in the CID Spill */
+ res = cid->rawdata[x];
+ if (0 > res){ /* Negative offset in the CID Spill */
ast_log(LOG_NOTICE, "IE %d has bad field length of %d at offset %d\n", cid->rawdata[x-1], cid->rawdata[x], x);
/* Try again */
cid->sawflag = 0;
More information about the asterisk-commits
mailing list