aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Sperling <ssperling@sysmocom.de>2018-05-03 14:05:56 +0200
committerStefan Sperling <ssperling@sysmocom.de>2018-05-03 14:05:56 +0200
commit1cb489231ae40d59b5d84ef48cdf126edffc19f9 (patch)
tree6b85685866cdf659b44e738a69adbdb20216dff3
parent93c5b10310a41f7d7b190d4fc98c859f5fb8584b (diff)
don't forget to mark luop as a packet switched connection
In rx_upd_loc_req() we set the connection's supports_ps field but forgot to also set the equivalent field in the corresponding luop. Change-Id: Ie175a067ac1324cdd39d7f756a40fab923421793 Related: OS#2785
-rw-r--r--src/hlr.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/hlr.c b/src/hlr.c
index 479b5cf..195e5d2 100644
--- a/src/hlr.c
+++ b/src/hlr.c
@@ -262,6 +262,7 @@ static int rx_upd_loc_req(struct osmo_gsup_conn *conn,
* 11.6.15 "CN Domain" says "if no CN Domain IE is present within
* a request, the PS Domain is assumed." */
conn->supports_ps = true;
+ luop->is_ps = true;
}
llist_add(&luop->list, &g_lu_ops);