| Index: net/quic/quic_dispatcher.cc
|
| diff --git a/net/quic/quic_dispatcher.cc b/net/quic/quic_dispatcher.cc
|
| index 2d35df36c37353302f7d7f3f3505c8bf9e3f10eb..280622da381c178db3b7da98592df0c9664d3787 100644
|
| --- a/net/quic/quic_dispatcher.cc
|
| +++ b/net/quic/quic_dispatcher.cc
|
| @@ -379,14 +379,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_,
|
|
|