Commit 6d6ce30e authored by Hideaki Yoshifuji's avatar Hideaki Yoshifuji

[IPSEC]: Fix obvious typo in xfrm_sk_clone_policy.

parent 5a8b70fc
...@@ -353,7 +353,7 @@ extern int __xfrm_sk_clone_policy(struct sock *sk); ...@@ -353,7 +353,7 @@ extern int __xfrm_sk_clone_policy(struct sock *sk);
static inline int xfrm_sk_clone_policy(struct sock *sk) static inline int xfrm_sk_clone_policy(struct sock *sk)
{ {
if (unlikely(sk->policy[0] || sk->policy[1])) if (unlikely(sk->policy[0] || sk->policy[1]))
return xfrm_sk_clone_policy(sk); return __xfrm_sk_clone_policy(sk);
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment