display TMSI in 8 digit hex

This commit is contained in:
Harald Welte (local) 2009-08-14 21:17:44 +02:00
parent 15920de8ce
commit 143fd51da9
1 changed files with 1 additions and 1 deletions

View File

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