Index: net/tools/quic/quic_dispatcher.cc |
diff --git a/net/tools/quic/quic_dispatcher.cc b/net/tools/quic/quic_dispatcher.cc |
index 310450fc42433b238ab9b460be728f560c0a716c..a45204f77046fa3a35c1b08aae12cd0f183c293d 100644 |
--- a/net/tools/quic/quic_dispatcher.cc |
+++ b/net/tools/quic/quic_dispatcher.cc |
@@ -393,14 +393,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) { |
DLOG(INFO) << "Creating QuicDispatcher with all versions."; |
return new QuicConnection(connection_id, client_address, helper_.get(), |
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) { |
DLOG(INFO) << "Connection flow control disabled, creating QuicDispatcher " |
<< "WITHOUT version 19 or higher."; |
return new QuicConnection(connection_id, client_address, helper_.get(), |