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-18 17:31:40 +0200
commita64037cd4a74d45d5da593e96faa9a7d8c746c9a (patch)
treea68bf79c4f92f0ba6a39c2b361ff9a592a922725
parent80352e03ca1c1fb7153f97477e41f8bc2875db2b (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;