aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/osmo-bsc/osmo_bsc_filter.c
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2012-07-19 14:22:42 +0200
committerHolger Hans Peter Freyther <zecke@selfish.org>2012-12-03 14:38:59 +0100
commit383d3c33e64a1b64da6d04df1ce7d92d88ef6e34 (patch)
tree0db775c7704eb4220fedf341e0620b538eb6faff /openbsc/src/osmo-bsc/osmo_bsc_filter.c
parentc5903a2b01c93e504fb84c513c012481d98758d9 (diff)
bsc: Call the variable with a more appropriate name.
Diffstat (limited to 'openbsc/src/osmo-bsc/osmo_bsc_filter.c')
-rw-r--r--openbsc/src/osmo-bsc/osmo_bsc_filter.c8
1 files changed, 4 insertions, 4 deletions
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);
}