aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2010-04-12 07:29:22 +0200
committerHolger Hans Peter Freyther <zecke@selfish.org>2010-04-12 07:29:22 +0200
commit4821b5a847c2870d8a58074b8ed9ebb769bd2064 (patch)
tree8ffad4a105dd4ede6b6d4bbe68f78d52c688c036
parent84df56d577409b1e38a168b160f61fdeacbb80ce (diff)
[nat] Change the command strings
Put the Target/Object first... Apparently this is more what people that know IOS expect to do.
-rw-r--r--openbsc/src/nat/bsc_nat_vty.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/openbsc/src/nat/bsc_nat_vty.c b/openbsc/src/nat/bsc_nat_vty.c
index 7e404672c..c8e91f79d 100644
--- a/openbsc/src/nat/bsc_nat_vty.c
+++ b/openbsc/src/nat/bsc_nat_vty.c
@@ -71,7 +71,7 @@ static int config_write_bsc(struct vty *vty)
}
-DEFUN(show_sccp, show_sccp_cmd, "show connections sccp",
+DEFUN(show_sccp, show_sccp_cmd, "sccp connections show",
SHOW_STR "Display information about current SCCP connections")
{
struct sccp_connections *con;
@@ -88,7 +88,7 @@ DEFUN(show_sccp, show_sccp_cmd, "show connections sccp",
return CMD_SUCCESS;
}
-DEFUN(show_bsc, show_bsc_cmd, "show connections bsc",
+DEFUN(show_bsc, show_bsc_cmd, "bsc connections show",
SHOW_STR "Display information about current BSCs")
{
struct bsc_connection *con;
@@ -107,7 +107,7 @@ DEFUN(show_bsc, show_bsc_cmd, "show connections bsc",
return CMD_SUCCESS;
}
-DEFUN(show_bsc_cfg, show_bsc_cfg_cmd, "show bsc config",
+DEFUN(show_bsc_cfg, show_bsc_cfg_cmd, "bsc config show",
SHOW_STR "Display information about known BSC configs")
{
struct bsc_config *conf;