Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 7889
b: refs/heads/master
c: a57ebc9
h: refs/heads/master
i:
  7887: ef8e504
v: v3
  • Loading branch information
Patrick McHardy authored and David S. Miller committed Sep 8, 2005
1 parent 5070185 commit 8aaa6c5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: baed16a7ff5194487764db300c2753ac7409c4c5
refs/heads/master: a57ebc90f1350296edded12d33d7c278831bc3bf
7 changes: 4 additions & 3 deletions trunk/net/ipv6/ip6_tunnel.c
Original file line number Diff line number Diff line change
Expand Up @@ -673,11 +673,12 @@ ip6ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)

if ((dst = ip6_tnl_dst_check(t)) != NULL)
dst_hold(dst);
else
else {
dst = ip6_route_output(NULL, &fl);

if (dst->error || xfrm_lookup(&dst, &fl, NULL, 0) < 0)
goto tx_err_link_failure;
if (dst->error || xfrm_lookup(&dst, &fl, NULL, 0) < 0)
goto tx_err_link_failure;
}

tdev = dst->dev;

Expand Down

0 comments on commit 8aaa6c5

Please sign in to comment.