aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Freyther <zecke@selfish.org>2010-04-17 23:10:34 +0800
committerHolger Hans Peter Freyther <zecke@selfish.org>2010-04-18 02:40:30 +0800
commit2b08aa35a61e30ddcf50ed976502f0622ca55b74 (patch)
treed1de76ad5221ca419ee350eadc894aa162f0b283
parentc24632930a9207dec8b76946bce6dac76cafe00b (diff)
nat: Remove the SHOW_STR from none show commands.
-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 e0a59992f..f35dc8087 100644
--- a/openbsc/src/nat/bsc_nat_vty.c
+++ b/openbsc/src/nat/bsc_nat_vty.c
@@ -82,7 +82,7 @@ static int config_write_bsc(struct vty *vty)
DEFUN(show_sccp, show_sccp_cmd, "sccp connections show",
- SHOW_STR "Display information about current SCCP connections")
+ "Display information about current SCCP connections")
{
struct sccp_connections *con;
llist_for_each_entry(con, &_nat->sccp_connections, list_entry) {
@@ -99,7 +99,7 @@ DEFUN(show_sccp, show_sccp_cmd, "sccp connections show",
}
DEFUN(show_bsc, show_bsc_cmd, "bsc connections show",
- SHOW_STR "Display information about current BSCs")
+ "Display information about current BSCs")
{
struct bsc_connection *con;
struct sockaddr_in sock;
@@ -118,7 +118,7 @@ DEFUN(show_bsc, show_bsc_cmd, "bsc connections show",
}
DEFUN(show_bsc_cfg, show_bsc_cfg_cmd, "bsc config show",
- SHOW_STR "Display information about known BSC configs")
+ "Display information about known BSC configs")
{
struct bsc_config *conf;
llist_for_each_entry(conf, &_nat->bsc_configs, entry) {