diff options
| author | Sridhar Samudrala <sridhar@dyn9-47-18-140.beaverton.ibm.com> | 2002-10-30 20:02:19 -0800 |
|---|---|---|
| committer | Sridhar Samudrala <sridhar@dyn9-47-18-140.beaverton.ibm.com> | 2002-10-30 20:02:19 -0800 |
| commit | cd722282000d09bcdd489c257fe7cc2b8548aadd (patch) | |
| tree | 96184b1cb713a37843057b9c8f6c33d3ee5e382b | |
| parent | c02bf8efdde1fe5c5aa5fa5a57144954bd81fd10 (diff) | |
[SCTP]: use dst_pmtu() to get the pmtu.
| -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 bfa6ba83ebe3..eed219643e9d 100644 --- a/net/sctp/transport.c +++ b/net/sctp/transport.c @@ -267,7 +267,7 @@ out_unlock: out: transport->dst = dst; if (dst) - transport->pmtu = dst->pmtu; + transport->pmtu = dst_pmtu(dst); else transport->pmtu = SCTP_DEFAULT_MAXSEGMENT; } |
