diff options
Diffstat (limited to 'net/sctp')
-rw-r--r-- | net/sctp/input.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sctp/input.c b/net/sctp/input.c index 5943b7d77ddb..f050d45faa98 100644 --- a/net/sctp/input.c +++ b/net/sctp/input.c | |||
@@ -431,7 +431,7 @@ void sctp_icmp_redirect(struct sock *sk, struct sctp_transport *t, | |||
431 | if (!t) | 431 | if (!t) |
432 | return; | 432 | return; |
433 | dst = sctp_transport_dst_check(t); | 433 | dst = sctp_transport_dst_check(t); |
434 | if (dst && dst->ops->redirect) | 434 | if (dst) |
435 | dst->ops->redirect(dst, skb); | 435 | dst->ops->redirect(dst, skb); |
436 | } | 436 | } |
437 | 437 | ||