From da2c945fd2683ee09794f654bae2a19a620dc7a7 Mon Sep 17 00:00:00 2001 From: honghaiz Date: Fri, 15 Jul 2016 17:55:34 -0700 Subject: [PATCH] Fix a logging error. BUG= Review-Url: https://codereview.webrtc.org/2152963004 Cr-Commit-Position: refs/heads/master@{#13493} --- webrtc/p2p/base/p2ptransportchannel.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webrtc/p2p/base/p2ptransportchannel.cc b/webrtc/p2p/base/p2ptransportchannel.cc index e9055f688f..5238da83ca 100644 --- a/webrtc/p2p/base/p2ptransportchannel.cc +++ b/webrtc/p2p/base/p2ptransportchannel.cc @@ -339,9 +339,9 @@ void P2PTransportChannel::SetRemoteIceMode(IceMode mode) { void P2PTransportChannel::SetIceConfig(const IceConfig& config) { if (config_.continual_gathering_policy != config.continual_gathering_policy) { + config_.continual_gathering_policy = config.continual_gathering_policy; LOG(LS_INFO) << "Set continual_gathering_policy to " << config_.continual_gathering_policy; - config_.continual_gathering_policy = config.continual_gathering_policy; } if (config.backup_connection_ping_interval >= 0 &&