diff options
author | Harald Welte <laforge@gnumonks.org> | 2010-05-18 12:00:55 +0200 |
---|---|---|
committer | Harald Welte <laforge@gnumonks.org> | 2010-05-18 12:00:55 +0200 |
commit | bf03d90d98d4549d0c8989001cf12f931afd9b07 (patch) | |
tree | eb95a3d028830df31853ee06216bdab5ea059a9b /openbsc/src | |
parent | 61c07842f2a12dfbde27b2c60b3a3c87934601ba (diff) |
[GPRS] BSSG: Fix Vty printing of BVC
Diffstat (limited to 'openbsc/src')
-rw-r--r-- | openbsc/src/gprs/gprs_bssgp_vty.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openbsc/src/gprs/gprs_bssgp_vty.c b/openbsc/src/gprs/gprs_bssgp_vty.c index a424038d..8377c56e 100644 --- a/openbsc/src/gprs/gprs_bssgp_vty.c +++ b/openbsc/src/gprs/gprs_bssgp_vty.c @@ -73,7 +73,7 @@ DEFUN(cfg_bssgp, cfg_bssgp_cmd, static void dump_bvc(struct vty *vty, struct bssgp_bvc_ctx *bvc, int stats) { vty_out(vty, "NSEI %5u, BVCI %5u, RA-ID: %u-%u-%u-%u, CID: %u, " - "STATE: %s%s", bvc->bvci, bvc->nsei, bvc->bvci, bvc->ra_id.mcc, + "STATE: %s%s", bvc->nsei, bvc->bvci, bvc->ra_id.mcc, bvc->ra_id.mnc, bvc->ra_id.lac, bvc->ra_id.rac, bvc->cell_id, bvc->state & BVC_S_BLOCKED ? "BLOCKED" : "UNBLOCKED", VTY_NEWLINE); |