diff options
author | Fabian Frederick <fabf@skynet.be> | 2014-10-25 19:27:09 +0400 |
---|---|---|
committer | Steffen Klassert <steffen.klassert@secunet.com> | 2014-10-27 09:16:46 +0300 |
commit | 5c1e9f2c1ff7ed91c03906e0bf1d7fbbddae3970 (patch) | |
tree | e8020e832713fc0dfa80883f57b0da966b250e03 /net/xfrm | |
parent | 49cc91f919e2a94df8c9f99aae9b405444e88624 (diff) | |
download | linux-5c1e9f2c1ff7ed91c03906e0bf1d7fbbddae3970.tar.xz |
xfrm: fix set but not used warning in xfrm_policy_queue_process()
err was set but unused.
Signed-off-by: Fabian Frederick <fabf@skynet.be>
Signed-off-by: Steffen Klassert <steffen.klassert@secunet.com>
Diffstat (limited to 'net/xfrm')
-rw-r--r-- | net/xfrm/xfrm_policy.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/xfrm/xfrm_policy.c b/net/xfrm/xfrm_policy.c index 4c4e457e7888..dc653249e845 100644 --- a/net/xfrm/xfrm_policy.c +++ b/net/xfrm/xfrm_policy.c @@ -1878,7 +1878,6 @@ xfrm_resolve_and_create_bundle(struct xfrm_policy **pols, int num_pols, static void xfrm_policy_queue_process(unsigned long arg) { - int err = 0; struct sk_buff *skb; struct sock *sk; struct dst_entry *dst; @@ -1941,7 +1940,7 @@ static void xfrm_policy_queue_process(unsigned long arg) skb_dst_drop(skb); skb_dst_set(skb, dst); - err = dst_output(skb); + dst_output(skb); } out: |