[svn-commits] rmudgett: branch rmudgett/bch_shift_trunk r311750 - /team/rmudgett/bch_shift_...

SVN commits to the Digium repositories svn-commits at lists.digium.com
Mon Mar 28 16:28:33 CDT 2011


Author: rmudgett
Date: Mon Mar 28 16:28:25 2011
New Revision: 311750

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=311750
Log:
Bring 'pri show channels' PRI call column back even though it is now redundant.

Modified:
    team/rmudgett/bch_shift_trunk/channels/sig_pri.c

Modified: team/rmudgett/bch_shift_trunk/channels/sig_pri.c
URL: http://svnview.digium.com/svn/asterisk/team/rmudgett/bch_shift_trunk/channels/sig_pri.c?view=diff&rev=311750&r1=311749&r2=311750
==============================================================================
--- team/rmudgett/bch_shift_trunk/channels/sig_pri.c (original)
+++ team/rmudgett/bch_shift_trunk/channels/sig_pri.c Mon Mar 28 16:28:25 2011
@@ -8546,12 +8546,12 @@
 	ast_free(doomed);
 }
 
-#define SIG_PRI_SC_HEADER	"%-4s %4s %-4s %-4s %-10s %s\n"
-#define SIG_PRI_SC_LINE		 "%4d %4d %-4s %-4s %-10s %s"
+#define SIG_PRI_SC_HEADER	"%-4s %4s %-4s %-4s %-10s %-4s %s\n"
+#define SIG_PRI_SC_LINE		 "%4d %4d %-4s %-4s %-10s %-4s %s"
 void sig_pri_cli_show_channels_header(int fd)
 {
-	ast_cli(fd, SIG_PRI_SC_HEADER, "PRI",  "",     "B",    "Chan", "Call",  "Channel");
-	ast_cli(fd, SIG_PRI_SC_HEADER, "Span", "Chan", "Chan", "Idle", "Level", "Name");
+	ast_cli(fd, SIG_PRI_SC_HEADER, "PRI",  "",     "B",    "Chan", "Call",  "PRI",  "Channel");
+	ast_cli(fd, SIG_PRI_SC_HEADER, "Span", "Chan", "Chan", "Idle", "Level", "Call", "Name");
 }
 
 void sig_pri_cli_show_channels(int fd, struct sig_pri_span *pri)
@@ -8580,6 +8580,7 @@
 			pvt->no_b_channel ? "No" : "Yes",/* Has media */
 			sig_pri_is_chan_available(pvt) ? "Yes" : "No",
 			sig_pri_call_level2str(pvt->call_level),
+			pvt->call ? "Yes" : "No",
 			pvt->owner ? pvt->owner->name : "");
 
 		if (pvt->owner) {




More information about the svn-commits mailing list