From 383d3c33e64a1b64da6d04df1ce7d92d88ef6e34 Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Thu, 19 Jul 2012 14:22:42 +0200 Subject: bsc: Call the variable with a more appropriate name. --- openbsc/src/osmo-bsc/osmo_bsc_filter.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'openbsc/src/osmo-bsc/osmo_bsc_filter.c') diff --git a/openbsc/src/osmo-bsc/osmo_bsc_filter.c b/openbsc/src/osmo-bsc/osmo_bsc_filter.c index fa7f2d928..f7f305344 100644 --- a/openbsc/src/osmo-bsc/osmo_bsc_filter.c +++ b/openbsc/src/osmo-bsc/osmo_bsc_filter.c @@ -227,13 +227,13 @@ int bsc_scan_bts_msg(struct gsm_subscriber_connection *conn, struct msgb *msg) static void send_welcome_ussd(struct gsm_subscriber_connection *conn) { - struct osmo_bsc_sccp_con *bsc; + struct osmo_bsc_sccp_con *bsc_con; - bsc = conn->sccp_con; - if (!bsc || !bsc->msc->ussd_welcome_txt); + bsc_con = conn->sccp_con; + if (!bsc_con || !bsc_con->msc->ussd_welcome_txt); return; - gsm0480_send_ussdNotify(conn, 1, bsc->msc->ussd_welcome_txt); + gsm0480_send_ussdNotify(conn, 1, bsc_con->msc->ussd_welcome_txt); gsm0480_send_releaseComplete(conn); } -- cgit v1.2.3