aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2012-07-19 14:28:48 +0200
committerHolger Hans Peter Freyther <zecke@selfish.org>2012-12-03 14:39:11 +0100
commitb3089e437da1bc20de199d7688aa255d6ac82601 (patch)
treee572e2df3f05310feeff217322cc34bd517082da
parent383d3c33e64a1b64da6d04df1ce7d92d88ef6e34 (diff)
bsc: Fix a brown paper bug and most likely fix the USSD welcome issue
-rw-r--r--openbsc/src/osmo-bsc/osmo_bsc_filter.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/openbsc/src/osmo-bsc/osmo_bsc_filter.c b/openbsc/src/osmo-bsc/osmo_bsc_filter.c
index f7f305344..f03449493 100644
--- a/openbsc/src/osmo-bsc/osmo_bsc_filter.c
+++ b/openbsc/src/osmo-bsc/osmo_bsc_filter.c
@@ -230,7 +230,7 @@ static void send_welcome_ussd(struct gsm_subscriber_connection *conn)
struct osmo_bsc_sccp_con *bsc_con;
bsc_con = conn->sccp_con;
- if (!bsc_con || !bsc_con->msc->ussd_welcome_txt);
+ if (!bsc_con || !bsc_con->msc->ussd_welcome_txt)
return;
gsm0480_send_ussdNotify(conn, 1, bsc_con->msc->ussd_welcome_txt);