fix copy-paste bug in up_endpoint.c

Related: CID#307544
Change-Id: I055179a81e1a71987cc8087626279505b65d1b62
This commit is contained in:
Neels Hofmeyr 2023-02-01 14:54:56 +01:00
parent 341e2ff692
commit eaf2d153a8
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ static void up_endpoint_set_msg_ctx(struct osmo_pfcp_endpoint *ep, struct osmo_p
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 */