[PATCH] gsm48: move to hex TMSI representation

This is merely a historical archive of years 2008-2021, before the migration to mailman3.

A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/OpenBSC@lists.osmocom.org/.

axilirator at gmail.com axilirator at gmail.com
Wed Mar 16 15:12:22 UTC 2016


From: Vadim Yanitskiy <axilirator at gmail.com>

Signed-off-by: Vadim Yanitskiy <axilirator at gmail.com>
---
 src/gsm/gsm48.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/gsm/gsm48.c b/src/gsm/gsm48.c
index d0a2286..e4a98d6 100644
--- a/src/gsm/gsm48.c
+++ b/src/gsm/gsm48.c
@@ -394,7 +394,7 @@ int gsm48_mi_to_string(char *string, const int str_len, const uint8_t *mi,
 		if (mi_len == GSM48_TMSI_LEN && mi[0] == (0xf0 | GSM_MI_TYPE_TMSI)) {
 			memcpy(&tmsi, &mi[1], 4);
 			tmsi = ntohl(tmsi);
-			return snprintf(string, str_len, "%u", tmsi);
+			return snprintf(string, str_len, "0x%08x", tmsi);
 		}
 		break;
 	case GSM_MI_TYPE_IMSI:
-- 
1.9.1




More information about the OpenBSC mailing list