| Index: net/quic/quic_dispatcher.cc
|
| diff --git a/net/quic/quic_dispatcher.cc b/net/quic/quic_dispatcher.cc
|
| index d1fe193b37e6d96f2e35261f26ff24ff098c1c36..928fd38152d14229a86ead65db8579de7738f9e9 100644
|
| --- a/net/quic/quic_dispatcher.cc
|
| +++ b/net/quic/quic_dispatcher.cc
|
| @@ -382,14 +382,14 @@ QuicConnection* QuicDispatcher::CreateQuicConnection(
|
| const IPEndPoint& server_address,
|
| const IPEndPoint& client_address) {
|
| if (FLAGS_enable_quic_stream_flow_control_2 &&
|
| - FLAGS_enable_quic_connection_flow_control) {
|
| + FLAGS_enable_quic_connection_flow_control_2) {
|
| DVLOG(1) << "Creating QuicDispatcher with all versions.";
|
| return new QuicConnection(connection_id, client_address, helper_,
|
| writer_.get(), true, supported_versions_);
|
| }
|
|
|
| if (FLAGS_enable_quic_stream_flow_control_2 &&
|
| - !FLAGS_enable_quic_connection_flow_control) {
|
| + !FLAGS_enable_quic_connection_flow_control_2) {
|
| DVLOG(1) << "Connection flow control disabled, creating QuicDispatcher "
|
| << "WITHOUT version 19 or higher.";
|
| return new QuicConnection(connection_id, client_address, helper_,
|
|
|