diff options
author | Vlad Yasevich <vladislav.yasevich@hp.com> | 2011-04-26 21:53:20 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-04-27 13:14:06 -0700 |
commit | af1384703f8a4ff3d245925d6596ef1c5c6e469e (patch) | |
tree | e96ff72cb9dd65961d0e175a61aa6c0b8c91b7e1 /net/sctp/transport.c | |
parent | 9c6a02f41d10dc9fbf5dd42058e8846f38dd2d9a (diff) | |
download | linux-af1384703f8a4ff3d245925d6596ef1c5c6e469e.tar.bz2 |
sctp: remove useless arguments from get_saddr() call
There is no point in passing a destination address to
a get_saddr() call.
Signed-off-by: Vlad Yasevich <vladislav.yasevich@hp.com>
Signed-off-by: Wei Yongjun <yjwei@cn.fujitsu.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sctp/transport.c')
-rw-r--r-- | net/sctp/transport.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sctp/transport.c b/net/sctp/transport.c index 2544b9b21f86..1fbb920f8dfb 100644 --- a/net/sctp/transport.c +++ b/net/sctp/transport.c @@ -284,7 +284,7 @@ void sctp_transport_route(struct sctp_transport *transport, if (saddr) memcpy(&transport->saddr, saddr, sizeof(union sctp_addr)); else - af->get_saddr(opt, transport, daddr, &fl); + af->get_saddr(opt, transport, &fl); if ((transport->param_flags & SPP_PMTUD_DISABLE) && transport->pathmtu) { return; |