aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/vty_interface.c
diff options
context:
space:
mode:
authorHarald Welte (local) <laflocal@hanuman.gnumonks.org>2009-08-14 21:17:44 +0200
committerHarald Welte (local) <laflocal@hanuman.gnumonks.org>2009-08-14 21:17:44 +0200
commit143fd51da9cc09613d832afc6829ea5f39a7679e (patch)
treef0aa6d86a73bd9673db9aba8498943ea919375f8 /openbsc/src/vty_interface.c
parent15920de8ce9b9199f4ef4ad568b204af0f34b2f0 (diff)
display TMSI in 8 digit hex
Diffstat (limited to 'openbsc/src/vty_interface.c')
-rw-r--r--openbsc/src/vty_interface.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/openbsc/src/vty_interface.c b/openbsc/src/vty_interface.c
index 8fc26e2dd..0c8c29a01 100644
--- a/openbsc/src/vty_interface.c
+++ b/openbsc/src/vty_interface.c
@@ -430,7 +430,7 @@ static void subscr_dump_vty(struct vty *vty, struct gsm_subscriber *subscr)
if (subscr->imsi)
vty_out(vty, " IMSI: %s%s", subscr->imsi, VTY_NEWLINE);
if (subscr->tmsi)
- vty_out(vty, " TMSI: %s%s", subscr->tmsi, VTY_NEWLINE);
+ vty_out(vty, " TMSI: %08X", subscr->tmsi, VTY_NEWLINE);
vty_out(vty, " Use count: %u%s", subscr->use_count, VTY_NEWLINE);
}