diff options
| author | Hideaki Yoshifuji <yoshfuji@linux-ipv6.org> | 2003-03-11 07:39:04 -0800 |
|---|---|---|
| committer | Hideaki Yoshifuji <yoshfuji@linux-ipv6.org> | 2003-03-11 07:39:04 -0800 |
| commit | 6d6ce30e4944f0ec812731b41bde17ae16fedd69 (patch) | |
| tree | b81f816121fa99d89a5f119bdfcad458e669406f | |
| parent | 5a8b70fcd07a9b65198316f26d35551f45cbb361 (diff) | |
[IPSEC]: Fix obvious typo in xfrm_sk_clone_policy.
| -rw-r--r-- | include/net/xfrm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/xfrm.h b/include/net/xfrm.h index 2279a0981812..e77805c63601 100644 --- a/include/net/xfrm.h +++ b/include/net/xfrm.h @@ -353,7 +353,7 @@ extern 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])) - return xfrm_sk_clone_policy(sk); + return __xfrm_sk_clone_policy(sk); return 0; } |
