diff options
| author | Jeff Garzik <jgarzik@pobox.com> | 2005-07-30 18:14:15 -0400 | 
|---|---|---|
| committer | Jeff Garzik <jgarzik@pobox.com> | 2005-07-30 18:14:15 -0400 | 
| commit | a670fcb43f01a67ef56176afc76e5d43d128b25c (patch) | |
| tree | 09c9411c78a33ff980e9ea871bc7686e7589abbf /net/sctp/ipv6.c | |
| parent | 327309e899662b482c58cf25f574513d38b5788c (diff) | |
| parent | b0825488a642cadcf39709961dde61440cb0731c (diff) | |
/spare/repo/netdev-2.6 branch 'master'
Diffstat (limited to 'net/sctp/ipv6.c')
| -rw-r--r-- | net/sctp/ipv6.c | 7 | 
1 files changed, 3 insertions, 4 deletions
diff --git a/net/sctp/ipv6.c b/net/sctp/ipv6.c index c7e42d125b9..e9b2fd480d6 100644 --- a/net/sctp/ipv6.c +++ b/net/sctp/ipv6.c @@ -91,7 +91,6 @@ SCTP_STATIC void sctp_v6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,  	struct ipv6hdr *iph = (struct ipv6hdr *)skb->data;  	struct sctphdr *sh = (struct sctphdr *)(skb->data + offset);  	struct sock *sk; -	struct sctp_endpoint *ep;  	struct sctp_association *asoc;  	struct sctp_transport *transport;  	struct ipv6_pinfo *np; @@ -105,7 +104,7 @@ SCTP_STATIC void sctp_v6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,  	savesctp  = skb->h.raw;  	skb->nh.ipv6h = iph;  	skb->h.raw = (char *)sh; -	sk = sctp_err_lookup(AF_INET6, skb, sh, &ep, &asoc, &transport); +	sk = sctp_err_lookup(AF_INET6, skb, sh, &asoc, &transport);  	/* Put back, the original pointers. */  	skb->nh.raw = saveip;  	skb->h.raw = savesctp; @@ -124,7 +123,7 @@ SCTP_STATIC void sctp_v6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,  		goto out_unlock;  	case ICMPV6_PARAMPROB:  		if (ICMPV6_UNK_NEXTHDR == code) { -			sctp_icmp_proto_unreachable(sk, ep, asoc, transport); +			sctp_icmp_proto_unreachable(sk, asoc, transport);  			goto out_unlock;  		}  		break; @@ -142,7 +141,7 @@ SCTP_STATIC void sctp_v6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,  	}  out_unlock: -	sctp_err_finish(sk, ep, asoc); +	sctp_err_finish(sk, asoc);  out:  	if (likely(idev != NULL))  		in6_dev_put(idev);  | 
