Index: webrtc/api/webrtcsdp.cc |
diff --git a/webrtc/api/webrtcsdp.cc b/webrtc/api/webrtcsdp.cc |
index 0b8d6f6a3d3fc28e4c4e6ba7d8de9655cc5234dc..0a2c8d79119e264eee99421302b3f90b32d404c8 100644 |
--- a/webrtc/api/webrtcsdp.cc |
+++ b/webrtc/api/webrtcsdp.cc |
@@ -1391,7 +1391,7 @@ void BuildSctpContentAttributes(std::string* message, int sctp_port) { |
InitAttrLine(kAttributeSctpmap, &os); |
os << kSdpDelimiterColon << sctp_port << kSdpDelimiterSpace |
<< kDefaultSctpmapProtocol << kSdpDelimiterSpace |
- << (cricket::kMaxSctpSid + 1); |
+ << (cricket::kMaxSctpStreams); |
skvlad
2016/08/17 19:13:53
The parentheses aren't necessary any more.
Taylor Brandstetter
2016/08/17 22:39:27
Done.
|
AddLine(os.str(), message); |
} |