aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorNeels Hofmeyr <neels@hofmeyr.de>2020-10-08 01:23:17 +0200
committerNeels Hofmeyr <nhofmeyr@sysmocom.de>2021-11-16 16:12:49 +0100
commit87967381706c8be04262971024b7405caee0ea17 (patch)
tree6b060b01b71a6b222e59cee3b2b95519f9a3d098 /include
parentd13ef633d2d905766e33ca46593c7ad7c8fbd767 (diff)
do not pass length outside of msgb (1): bsc_handle_dt()
Diffstat (limited to 'include')
-rw-r--r--include/osmocom/bsc/osmo_bsc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/osmocom/bsc/osmo_bsc.h b/include/osmocom/bsc/osmo_bsc.h
index 13ccdd7b2..de0d93acd 100644
--- a/include/osmocom/bsc/osmo_bsc.h
+++ b/include/osmocom/bsc/osmo_bsc.h
@@ -23,7 +23,7 @@ int bsc_scan_bts_msg(struct gsm_subscriber_connection *conn, struct msgb *msg);
int bsc_scan_msc_msg(struct gsm_subscriber_connection *conn, struct msgb *msg);
int bsc_handle_udt(struct bsc_msc_data *msc, struct msgb *msg, unsigned int length);
-int bsc_handle_dt(struct gsm_subscriber_connection *conn, struct msgb *msg, unsigned int len);
+int bsc_handle_dt(struct gsm_subscriber_connection *conn, struct msgb *msg);
int bsc_ctrl_cmds_install();