From ce95b27b68bb44f56d166eb271e69c4f38b6e853 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Sun, 17 Jun 2012 13:04:02 +0800 Subject: libgb: make sure all BSSGP functions have bssgp_ prefix We change the minority of functions employing the gprs_bssgp_ prefix to match with the majority without gprs_ in front. --- openbsc/src/gprs/sgsn_main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'openbsc/src/gprs/sgsn_main.c') diff --git a/openbsc/src/gprs/sgsn_main.c b/openbsc/src/gprs/sgsn_main.c index c3bc8d25d..d1df094ae 100644 --- a/openbsc/src/gprs/sgsn_main.c +++ b/openbsc/src/gprs/sgsn_main.c @@ -88,7 +88,7 @@ static int sgsn_ns_cb(enum gprs_ns_evt event, struct gprs_nsvc *nsvc, switch (event) { case GPRS_NS_EVT_UNIT_DATA: /* hand the message into the BSSGP implementation */ - rc = gprs_bssgp_rcvmsg(msg); + rc = bssgp_rcvmsg(msg); break; default: LOGP(DGPRS, LOGL_ERROR, "SGSN: Unknown event %u from NS\n", event); @@ -320,7 +320,7 @@ int main(int argc, char **argv) exit(1); gprs_ns_set_log_ss(DNS); - gprs_bssgp_set_log_ss(DBSSGP); + bssgp_set_log_ss(DBSSGP); sgsn_nsi = gprs_ns_instantiate(&sgsn_ns_cb, tall_bsc_ctx); if (!sgsn_nsi) { @@ -332,7 +332,7 @@ int main(int argc, char **argv) gprs_llc_init("/usr/local/lib/osmocom/crypt/"); gprs_ns_vty_init(bssgp_nsi); - gprs_bssgp_vty_init(); + bssgp_vty_init(); gprs_llc_vty_init(); gprs_sndcp_vty_init(); /* FIXME: register signal handler for SS_L_NS */ -- cgit v1.2.3