From 95ccc0e03c4041fb121e340ae4536b25ce530899 Mon Sep 17 00:00:00 2001 From: "Dwayne M. Hubbard" Date: Wed, 4 Jun 2008 17:02:12 +0000 Subject: [PATCH] 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. git-svn-id: https://origsvn.digium.com/svn/libpri/branches/1.4@562 2fbb986a-6c06-0410-b554-c9c1f0a7f128 --- q931.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/q931.c b/q931.c index a77668c..50f6506 100644 --- a/q931.c +++ b/q931.c @@ -421,7 +421,7 @@ static FUNC_DUMP(dump_channel_id) 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" };