| Index: webrtc/api/peerconnection.cc
|
| diff --git a/webrtc/api/peerconnection.cc b/webrtc/api/peerconnection.cc
|
| index cc33aa88cebb6ce1473009115db4bdf711d51058..e0b4fca48da51692ab734a482bec15a0915d968a 100644
|
| --- a/webrtc/api/peerconnection.cc
|
| +++ b/webrtc/api/peerconnection.cc
|
| @@ -2212,8 +2212,7 @@
|
| // Call this last since it may create pooled allocator sessions using the
|
| // properties set above.
|
| port_allocator_->SetConfiguration(stun_servers, turn_servers,
|
| - configuration.ice_candidate_pool_size,
|
| - configuration.prune_turn_ports);
|
| + configuration.ice_candidate_pool_size);
|
| return true;
|
| }
|
|
|
| @@ -2229,8 +2228,7 @@
|
| // Call this last since it may create pooled allocator sessions using the
|
| // candidate filter set above.
|
| port_allocator_->SetConfiguration(stun_servers, turn_servers,
|
| - configuration.ice_candidate_pool_size,
|
| - configuration.prune_turn_ports);
|
| + configuration.ice_candidate_pool_size);
|
| return true;
|
| }
|
|
|
|
|