From 4c8ddb356cacd7644e2db9de3273ac4fdf8aa455 Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Tue, 25 Jan 2011 13:18:59 +0100 Subject: [PATCH] vty: Fix the up/down of the MSC link --- src/vty_interface.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vty_interface.c b/src/vty_interface.c index 531fd27..ec85f30 100644 --- a/src/vty_interface.c +++ b/src/vty_interface.c @@ -356,7 +356,7 @@ DEFUN(show_msc, show_msc_cmd, SHOW_STR "Display the status of the MSC\n") { vty_out(vty, "MSC link is %s and had %s.%s", - bsc.msc_link_down == 0 ? "down" : "up", + bsc.msc_link_down == 0 ? "up" : "down", bsc.first_contact == 1 ? "no contact" : "contact", VTY_NEWLINE); return CMD_SUCCESS;