From 0f82438059169006c883ee126cc2957b844f0c19 Mon Sep 17 00:00:00 2001 From: Philipp Maier Date: Mon, 12 Jun 2017 12:52:35 +0200 Subject: cosmetic: more expressive function names in a_iface The function names if the API function in a_iface.c are not very expressive. Besides of that, the prototypes are in the wrong header file. This commit gives the function more expressive names and moves the prototypes in the right header file. --- openbsc/src/libmsc/gsm_subscriber.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'openbsc/src/libmsc/gsm_subscriber.c') diff --git a/openbsc/src/libmsc/gsm_subscriber.c b/openbsc/src/libmsc/gsm_subscriber.c index f92101863..5de96e7cf 100644 --- a/openbsc/src/libmsc/gsm_subscriber.c +++ b/openbsc/src/libmsc/gsm_subscriber.c @@ -43,6 +43,7 @@ #include #include #include +#include void *tall_sub_req_ctx; @@ -111,7 +112,7 @@ int msc_paging_request(struct vlr_subscr *vsub) * Need to add BSC paging at some point. */ switch (vsub->cs.attached_via_ran) { case RAN_GERAN_A: - return a_page(vsub->imsi, vsub->tmsi, vsub->lac); + return a_iface_tx_paging(vsub->imsi, vsub->tmsi, vsub->lac); case RAN_UTRAN_IU: return iu_page_cs(vsub->imsi, vsub->tmsi == GSM_RESERVED_TMSI? -- cgit v1.2.3