neels has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-upf/+/31146 )
Change subject: fix copy-paste bug in up_endpoint.c ......................................................................
fix copy-paste bug in up_endpoint.c
Related: CID#307544 Change-Id: I055179a81e1a71987cc8087626279505b65d1b62 --- M src/osmo-upf/up_endpoint.c 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-upf refs/changes/46/31146/1
diff --git a/src/osmo-upf/up_endpoint.c b/src/osmo-upf/up_endpoint.c index db765a4..70900c4 100644 --- a/src/osmo-upf/up_endpoint.c +++ b/src/osmo-upf/up_endpoint.c @@ -38,7 +38,7 @@ if (!m->ctx.peer_fi && req->ctx.peer_fi) up_peer_set_msg_ctx(req->ctx.peer_fi->priv, m); if (!m->ctx.session_fi && req->ctx.session_fi) - up_session_set_msg_ctx(req->ctx.peer_fi->priv, m); + up_session_set_msg_ctx(req->ctx.session_fi->priv, m); }
/* From the remote address, find the matching peer instance */