aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorPhilipp Maier <pmaier@sysmocom.de>2018-11-19 18:31:16 +0100
committerdexter <pmaier@sysmocom.de>2018-11-23 10:04:29 +0000
commit54729d6e5e4d6dc2d03bc400fcc4d358ea2ff395 (patch)
tree1f02f2c8b9211ef249da10b56162fff0ace8cf7b /tests
parentb7e5201b6266e53b99fd66e173d0e4a3e345e2e1 (diff)
osmo_msc: remove unused parameter from msc_dtap()
The parameter link_id in the function msc_dtap() is unused. Lets remove it. Change-Id: I7ba67b0cb514c91bc87a7b396ed3962b7a68e7da
Diffstat (limited to 'tests')
-rw-r--r--tests/msc_vlr/msc_vlr_tests.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/msc_vlr/msc_vlr_tests.c b/tests/msc_vlr/msc_vlr_tests.c
index 9515c63eb..6cf927c2f 100644
--- a/tests/msc_vlr/msc_vlr_tests.c
+++ b/tests/msc_vlr/msc_vlr_tests.c
@@ -232,7 +232,7 @@ void rx_from_ms(struct msgb *msg)
&& (gsm48_hdr_msg_type(gh) == GSM48_MT_RR_CIPH_M_COMPL))
msc_cipher_mode_compl(g_conn, msg, 0);
else
- msc_dtap(g_conn, 23, msg);
+ msc_dtap(g_conn, msg);
}
if (!conn_exists(g_conn))