neels has uploaded this change for review.

View Change

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 */

To view, visit change 31146. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: osmo-upf
Gerrit-Branch: master
Gerrit-Change-Id: I055179a81e1a71987cc8087626279505b65d1b62
Gerrit-Change-Number: 31146
Gerrit-PatchSet: 1
Gerrit-Owner: neels <nhofmeyr@sysmocom.de>
Gerrit-MessageType: newchange