aboutsummaryrefslogtreecommitdiffstats
path: root/src/common/vty.c
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2015-11-20 10:54:09 +0100
committerHarald Welte <laforge@gnumonks.org>2015-11-20 10:54:09 +0100
commit48e99fd05a906bcf9536996733123fdb512b635e (patch)
tree7a54a98f0cbcf39f9f5e4be731514a50e742a8e5 /src/common/vty.c
parent3c161bb7df7bf95e5a69db97fe3baa6380c3c9ed (diff)
cope with 'struct gsm_bts' without a tsc member
This was introduced in openbsc.git a2bbc5ec0e6481bb5b65da7bdbde03a424437af4
Diffstat (limited to 'src/common/vty.c')
-rw-r--r--src/common/vty.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/vty.c b/src/common/vty.c
index 0d52dd76..a67ffe1d 100644
--- a/src/common/vty.c
+++ b/src/common/vty.c
@@ -559,10 +559,10 @@ static void bts_dump_vty(struct vty *vty, struct gsm_bts *bts)
struct gsm_bts_role_bts *btsb = bts->role;
vty_out(vty, "BTS %u is of %s type in band %s, has CI %u LAC %u, "
- "BSIC %u, TSC %u and %u TRX%s",
+ "BSIC %u and %u TRX%s",
bts->nr, "FIXME", gsm_band_name(bts->band),
bts->cell_identity,
- bts->location_area_code, bts->bsic, bts->tsc,
+ bts->location_area_code, bts->bsic,
bts->num_trx, VTY_NEWLINE);
vty_out(vty, " Description: %s%s",
bts->description ? bts->description : "(null)", VTY_NEWLINE);