From 3c20a5ee7483108fed857b61050b7282327d5c83 Mon Sep 17 00:00:00 2001 From: Neels Hofmeyr Date: Fri, 30 Nov 2018 01:08:36 +0100 Subject: rename some RAN conn related stuff to ran_conn_* Following previous rename of gsm_subscriber_connection: Some functions and #defines are still called like "msc_conn" or just "msc_", while they are clearly about a RAN conn. To avoid confusion with the future separate concepts of MSC roles and a RAN connection, rename all those to match the common "ran_conn" prefix. Change-Id: Ia17a0a35f11911e00e19cafb5d7828d729a69640 --- src/libmsc/silent_call.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/libmsc/silent_call.c') diff --git a/src/libmsc/silent_call.c b/src/libmsc/silent_call.c index 6c6e217d2..c6c31a09e 100644 --- a/src/libmsc/silent_call.c +++ b/src/libmsc/silent_call.c @@ -57,7 +57,7 @@ static int paging_cb_silent(unsigned int hooknum, unsigned int event, conn->lchan->ts->nr, conn->lchan->ts->trx->arfcn); #endif conn->silent_call = 1; - ran_conn_get(conn, MSC_CONN_USE_SILENT_CALL); + ran_conn_get(conn, RAN_CONN_USE_SILENT_CALL); /* increment lchan reference count */ osmo_signal_dispatch(SS_SCALL, S_SCALL_SUCCESS, &sigdata); break; @@ -162,7 +162,7 @@ int gsm_silent_call_stop(struct vlr_subscr *vsub) #endif conn->silent_call = 0; - ran_conn_put(conn, MSC_CONN_USE_SILENT_CALL); + ran_conn_put(conn, RAN_CONN_USE_SILENT_CALL); return 0; } -- cgit v1.2.3