aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2011-04-13 20:58:14 +0200
committerHolger Hans Peter Freyther <zecke@selfish.org>2011-04-13 20:58:14 +0200
commitffa58ba5441b2d64e873f825c0769a0895e415e3 (patch)
tree3b6322b26d81a1e8eca55d8e96858af6e28f69be
parent5cde92cb0e447ef9d415918c5194c3e65282ab28 (diff)
nat: Clarify the documentation of the allow/deny regexp
-rw-r--r--openbsc/src/osmo-bsc_nat/bsc_nat_vty.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/openbsc/src/osmo-bsc_nat/bsc_nat_vty.c b/openbsc/src/osmo-bsc_nat/bsc_nat_vty.c
index 3a5068e26..da4815084 100644
--- a/openbsc/src/osmo-bsc_nat/bsc_nat_vty.c
+++ b/openbsc/src/osmo-bsc_nat/bsc_nat_vty.c
@@ -566,7 +566,7 @@ DEFUN(cfg_bsc_no_lac, cfg_bsc_no_lac_cmd,
DEFUN(cfg_lst_imsi_allow,
cfg_lst_imsi_allow_cmd,
"access-list NAME imsi-allow [REGEXP]",
- "Allow IMSIs matching the REGEXP\n"
+ "Add the regexp to the allowed list\n"
"The name of the access-list\n"
"The regexp of allowed IMSIs\n")
{
@@ -589,7 +589,7 @@ DEFUN(cfg_lst_imsi_allow,
DEFUN(cfg_lst_imsi_deny,
cfg_lst_imsi_deny_cmd,
"access-list NAME imsi-deny [REGEXP]",
- "Allow IMSIs matching the REGEXP\n"
+ "Add the regexp to the deny list\n"
"The name of the access-list\n"
"The regexp of to be denied IMSIs\n")
{
@@ -657,7 +657,7 @@ DEFUN(cfg_bsc_acc_lst_name,
DEFUN(cfg_bsc_no_acc_lst_name,
cfg_bsc_no_acc_lst_name_cmd,
"no access-list-name",
- NO_STR "Remove the access list assigned to the BSC.\n")
+ NO_STR "Do not use an access-list for the BSC.\n")
{
struct bsc_config *conf = vty->index;