remove references to u_int*_t and use uint*_t instead

This commit is contained in:
Harald Welte 2010-04-09 07:57:40 +02:00
parent 1ef041ff1e
commit 163d0ea85b
2 changed files with 5 additions and 4 deletions

View File

@ -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

View File

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