summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte2010-04-09 07:57:40 +0200
committerHarald Welte2010-04-09 07:57:40 +0200
commit163d0ea85b99a2c581b1f861bf9445a9a14bfc6f (patch)
treec68090d328d1777723189ca5a97a249f95664c30
parentgsm48: introduce MM_CONNECTION_PEND state (diff)
downloadlibosmocore-163d0ea85b99a2c581b1f861bf9445a9a14bfc6f.tar.gz
libosmocore-163d0ea85b99a2c581b1f861bf9445a9a14bfc6f.tar.xz
libosmocore-163d0ea85b99a2c581b1f861bf9445a9a14bfc6f.zip
remove references to u_int*_t and use uint*_t instead
-rw-r--r--include/osmocore/gsm48.h2
-rw-r--r--src/gsm48.c7
2 files changed, 5 insertions, 4 deletions
diff --git a/include/osmocore/gsm48.h b/include/osmocore/gsm48.h
index b752ee0..e3a1def 100644
--- a/include/osmocore/gsm48.h
+++ b/include/osmocore/gsm48.h
@@ -16,6 +16,6 @@ int gsm48_generate_mid_from_imsi(uint8_t *buf, const char *imsi);
/* Convert Mobile Identity (10.5.1.4) to string */
int gsm48_mi_to_string(char *string, const int str_len,
- const u_int8_t *mi, const int mi_len);
+ const uint8_t *mi, const int mi_len);
#endif
diff --git a/src/gsm48.c b/src/gsm48.c
index e0cba15..783ff6a 100644
--- a/src/gsm48.c
+++ b/src/gsm48.c
@@ -263,12 +263,13 @@ int gsm48_generate_mid_from_imsi(uint8_t *buf, const char *imsi)
}
/* Convert Mobile Identity (10.5.1.4) to string */
-int gsm48_mi_to_string(char *string, const int str_len, const u_int8_t *mi, const int mi_len)
+int gsm48_mi_to_string(char *string, const int str_len, const uint8_t *mi,
+ const int mi_len)
{
int i;
- u_int8_t mi_type;
+ uint8_t mi_type;
char *str_cur = string;
- u_int32_t tmsi;
+ uint32_t tmsi;
mi_type = mi[0] & GSM_MI_TYPE_MASK;