Browse code

Merge pull request #9149 from swagiaal/fix-configureBridge-comment

Remove reference to 'ifaceName' from configureBridge comment.

Vincent Batts authored on 2014/11/22 06:37:28
Showing 1 changed files
... ...
@@ -253,9 +253,9 @@ func setupIPTables(addr net.Addr, icc, ipmasq bool) error {
253 253
 	return nil
254 254
 }
255 255
 
256
-// configureBridge attempts to create and configure a network bridge interface named `ifaceName` on the host
256
+// configureBridge attempts to create and configure a network bridge interface named `bridgeIface` on the host
257 257
 // If bridgeIP is empty, it will try to find a non-conflicting IP from the Docker-specified private ranges
258
-// If the bridge `ifaceName` already exists, it will only perform the IP address association with the existing
258
+// If the bridge `bridgeIface` already exists, it will only perform the IP address association with the existing
259 259
 // bridge (fixes issue #8444)
260 260
 // If an address which doesn't conflict with existing interfaces can't be found, an error is returned.
261 261
 func configureBridge(bridgeIP string) error {