[libss7-commits] mattf: trunk r208 - /trunk/isup.c
SVN commits to the libss7 project
libss7-commits at lists.digium.com
Sat Aug 9 11:54:24 CDT 2008
Author: mattf
Date: Sat Aug 9 11:54:23 2008
New Revision: 208
URL: http://svn.digium.com/view/libss7?view=rev&rev=208
Log:
Fix minor buglet in parsing code of echo_control_info_dump. If we received spare or unknown values in the hg bits, it would overwrite the dump output of the fe bits
Modified:
trunk/isup.c
Modified: trunk/isup.c
URL: http://svn.digium.com/view/libss7/trunk/isup.c?view=diff&rev=208&r1=207&r2=208
==============================================================================
--- trunk/isup.c (original)
+++ trunk/isup.c Sat Aug 9 11:54:23 2008
@@ -1683,10 +1683,10 @@
hg_str = "incoming echo control device deactivation request";
break;
case 3:
- fe_str = "spare";
+ hg_str = "spare";
break;
default:
- fe_str = "unknown";
+ hg_str = "unknown";
break;
}
More information about the libss7-commits
mailing list