aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOliver Smith <osmith@sysmocom.de>2019-01-09 12:05:15 +0100
committerOliver Smith <osmith@sysmocom.de>2019-01-09 12:05:15 +0100
commit66106c0992a403cb3ca38b09cd40b4ba4c39b7ca (patch)
treef44d04d8adb70cde72a02fe61d623522f000b31a
parent783ac81b9caa629b82b4d47dd6be704f8670dced (diff)
Cosmetic: hlr.c: remove confusing indent below if
Remove a misleading block in rx_upd_loc_req() around the call to lu_op_tx_insert_subscr_data(). At least for me, this made the block look like it belonged to the if statement above (which has no brackets), before I looked more closely at it. Change-Id: I96d3ba4108f4811279caf088a9179afce24e8112
-rw-r--r--src/hlr.c13
1 files changed, 6 insertions, 7 deletions
diff --git a/src/hlr.c b/src/hlr.c
index ce5618a..614e99f 100644
--- a/src/hlr.c
+++ b/src/hlr.c
@@ -330,13 +330,12 @@ static int rx_upd_loc_req(struct osmo_gsup_conn *conn,
LOGP(DAUC, LOGL_ERROR, "IMSI='%s': Cannot update %s in the database\n",
subscr->imsi, luop->is_ps ? "SGSN number" : "VLR number");
- {
- /* TODO: Subscriber allowed to roam in PLMN? */
- /* TODO: Update RoutingInfo */
- /* TODO: Reset Flag MS Purged (cs/ps) */
- /* TODO: Control_Tracing_HLR / Control_Tracing_HLR_with_SGSN */
- lu_op_tx_insert_subscr_data(luop);
- }
+ /* TODO: Subscriber allowed to roam in PLMN? */
+ /* TODO: Update RoutingInfo */
+ /* TODO: Reset Flag MS Purged (cs/ps) */
+ /* TODO: Control_Tracing_HLR / Control_Tracing_HLR_with_SGSN */
+ lu_op_tx_insert_subscr_data(luop);
+
return 0;
}