[libpri-commits] dhubbard: branch 1.2 r561 - /branches/1.2/q931.c
    SVN commits to the libpri project 
    libpri-commits at lists.digium.com
       
    Wed Jun  4 11:59:04 CDT 2008
    
    
  
Author: dhubbard
Date: Wed Jun  4 11:59:04 2008
New Revision: 561
URL: http://svn.digium.com/view/libpri?view=rev&rev=561
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:
    branches/1.2/q931.c
Modified: branches/1.2/q931.c
URL: http://svn.digium.com/view/libpri/branches/1.2/q931.c?view=diff&rev=561&r1=560&r2=561
==============================================================================
--- branches/1.2/q931.c (original)
+++ branches/1.2/q931.c Wed Jun  4 11:59:04 2008
@@ -399,7 +399,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