[libpri-commits] dhubbard: branch 1.4 r562 - /branches/1.4/q931.c

SVN commits to the libpri project libpri-commits at lists.digium.com
Wed Jun 4 12:02:13 CDT 2008


Author: dhubbard
Date: Wed Jun  4 12:02:12 2008
New Revision: 562

URL: http://svn.digium.com/view/libpri?view=rev&rev=562
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.4/q931.c

Modified: branches/1.4/q931.c
URL: http://svn.digium.com/view/libpri/branches/1.4/q931.c?view=diff&rev=562&r1=561&r2=562
==============================================================================
--- branches/1.4/q931.c (original)
+++ branches/1.4/q931.c Wed Jun  4 12:02:12 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