[libpri-commits] dhubbard: trunk r563 - /trunk/q931.c
    SVN commits to the libpri project 
    libpri-commits at lists.digium.com
       
    Wed Jun  4 12:07:17 CDT 2008
    
    
  
Author: dhubbard
Date: Wed Jun  4 12:07:17 2008
New Revision: 563
URL: http://svn.digium.com/view/libpri?view=rev&rev=563
Log:
While working on issue 3450 I noticed that the information channel selection field in the channel identification IE was displayed incorrectly when using 'pri intense debug'.  I wanted another pair of eyes to look at the code because everything looked correct until Shaun Ruffell noticed the missing comma in the msg_chan_sel array.
Modified:
    trunk/q931.c
Modified: trunk/q931.c
URL: http://svn.digium.com/view/libpri/trunk/q931.c?view=diff&rev=563&r1=562&r2=563
==============================================================================
--- trunk/q931.c (original)
+++ trunk/q931.c Wed Jun  4 12:07:17 2008
@@ -421,7 +421,7 @@
 	int x;
 	int res = 0;
 	static const char*	msg_chan_sel[] = {
-		"No channel selected", "B1 channel", "B2 channel","Any channel selected" 
+		"No channel selected", "B1 channel", "B2 channel","Any channel selected",  
 		"No channel selected", "As indicated in following octets", "Reserved","Any channel selected"
 	};
 
    
    
More information about the libpri-commits
mailing list