mirror of
https://gitea.osmocom.org/cellular-infrastructure/osmo-mgw.git
synced 2025-10-23 08:12:01 +00:00
IuCS: fix logical flip in same_ue_conn()
This commit is contained in:
@@ -33,7 +33,7 @@ static int same_ue_conn(struct ue_conn_ctx *a, struct ue_conn_ctx *b)
|
||||
if (a == b)
|
||||
return 1;
|
||||
return (a->link == b->link)
|
||||
&& (a->conn_id != b->conn_id);
|
||||
&& (a->conn_id == b->conn_id);
|
||||
}
|
||||
|
||||
/* Return an existing IuCS subscriber connection record for the given link and
|
||||
|
Reference in New Issue
Block a user