You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
[IPSEC] af_key: Fix thinko in pfkey_xfrm_policy2msg()
Make sure to actually assign the determined mode to rq->sadb_x_ipsecrequest_mode. Noticed by Joe Perches. Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
+1
-1
@@ -2072,7 +2072,7 @@ static int pfkey_xfrm_policy2msg(struct sk_buff *skb, struct xfrm_policy *xp, in
|
||||
rq->sadb_x_ipsecrequest_proto = t->id.proto;
|
||||
if ((mode = pfkey_mode_from_xfrm(t->mode)) < 0)
|
||||
return -EINVAL;
|
||||
mode = pfkey_mode_from_xfrm(t->mode);
|
||||
rq->sadb_x_ipsecrequest_mode = mode;
|
||||
rq->sadb_x_ipsecrequest_level = IPSEC_LEVEL_REQUIRE;
|
||||
if (t->reqid)
|
||||
rq->sadb_x_ipsecrequest_level = IPSEC_LEVEL_UNIQUE;
|
||||
|
||||
Reference in New Issue
Block a user