aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <holger@moiji-mobile.com>2014-07-08 12:48:49 +0200
committerHolger Hans Peter Freyther <holger@moiji-mobile.com>2014-07-08 12:48:49 +0200
commit768580b3eca1bb539cb58524f1044d056957a86f (patch)
tree2b0c21ed9e940155b14c9c954f3d24a9228b068f
parent891b0a857dc8f60fdb6b73c933e1d6520965e0f0 (diff)
bsc: Use the word core network and not backbone.
-rw-r--r--openbsc/src/osmo-bsc/osmo_bsc_vty.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/openbsc/src/osmo-bsc/osmo_bsc_vty.c b/openbsc/src/osmo-bsc/osmo_bsc_vty.c
index 94a92f1ce..eb12287d4 100644
--- a/openbsc/src/osmo-bsc/osmo_bsc_vty.c
+++ b/openbsc/src/osmo-bsc/osmo_bsc_vty.c
@@ -210,7 +210,7 @@ DEFUN(cfg_net_bsc_token,
DEFUN(cfg_net_bsc_ncc,
cfg_net_bsc_ncc_cmd,
"core-mobile-network-code <1-999>",
- "Use this network code for the backbone\n" "NCC value\n")
+ "Use this network code for the core network\n" "NCC value\n")
{
struct osmo_msc_data *data = osmo_msc_data(vty);
data->core_ncc = atoi(argv[0]);
@@ -220,7 +220,7 @@ DEFUN(cfg_net_bsc_ncc,
DEFUN(cfg_net_bsc_mcc,
cfg_net_bsc_mcc_cmd,
"core-mobile-country-code <1-999>",
- "Use this country code for the backbone\n" "MCC value\n")
+ "Use this country code for the core network\n" "MCC value\n")
{
struct osmo_msc_data *data = osmo_msc_data(vty);
data->core_mcc = atoi(argv[0]);