aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/nat/bsc_mgcp_utils.c
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2010-07-23 19:08:55 +0800
committerHolger Hans Peter Freyther <zecke@selfish.org>2010-07-23 19:08:55 +0800
commitdbd16fe59a1aefac4df77c7e31ffba87d74d9659 (patch)
tree2eb07bccb96b86fb70e891ed1aac0daf963b2429 /openbsc/src/nat/bsc_mgcp_utils.c
parente0478de1445273517aaa014ba32fd54ad9a0fb3b (diff)
nat: u_int8_t -> uint8_t
Diffstat (limited to 'openbsc/src/nat/bsc_mgcp_utils.c')
-rw-r--r--openbsc/src/nat/bsc_mgcp_utils.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/openbsc/src/nat/bsc_mgcp_utils.c b/openbsc/src/nat/bsc_mgcp_utils.c
index ef55f8a3f..48be904cf 100644
--- a/openbsc/src/nat/bsc_mgcp_utils.c
+++ b/openbsc/src/nat/bsc_mgcp_utils.c
@@ -42,8 +42,8 @@ int bsc_mgcp_assign(struct sccp_connections *con, struct msgb *msg)
struct sccp_connections *mcon;
struct tlv_parsed tp;
u_int16_t cic;
- u_int8_t timeslot;
- u_int8_t multiplex;
+ uint8_t timeslot;
+ uint8_t multiplex;
int combined;
if (!msg->l3h) {
@@ -140,7 +140,7 @@ static void bsc_mgcp_send_dlcx(struct bsc_connection *bsc, int endpoint)
return;
}
- bsc_write_mgcp(bsc, (u_int8_t *) buf, len);
+ bsc_write_mgcp(bsc, (uint8_t *) buf, len);
}
void bsc_mgcp_init(struct sccp_connections *con)