9
0
Fork 0

vty: Fix the up/down of the MSC link

This commit is contained in:
Holger Hans Peter Freyther 2011-01-25 13:18:59 +01:00
parent 8b997bb456
commit 4c8ddb356c
1 changed files with 1 additions and 1 deletions

View File

@ -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;