bsc: Use the word core network and not backbone.

This commit is contained in:
Holger Hans Peter Freyther 2014-07-08 12:48:49 +02:00
parent 891b0a857d
commit 768580b3ec
1 changed files with 2 additions and 2 deletions

View File

@ -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]);