From 76640e5d398fffc4e4a1d30c02db55d86ef8d14c Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Thu, 10 Dec 2020 15:45:38 +0100 Subject: [PATCH] drivers/bridge: format comments Signed-off-by: Sebastiaan van Stijn --- libnetwork/drivers/bridge/bridge.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libnetwork/drivers/bridge/bridge.go b/libnetwork/drivers/bridge/bridge.go index 835ab55258..7691d5b161 100644 --- a/libnetwork/drivers/bridge/bridge.go +++ b/libnetwork/drivers/bridge/bridge.go @@ -773,8 +773,8 @@ func (d *driver) createNetwork(config *networkConfiguration) (err error) { // Setup IP6Tables. {config.EnableIPv6 && d.config.EnableIP6Tables, network.setupIP6Tables}, - //We want to track firewalld configuration so that - //if it is started/reloaded, the rules can be applied correctly + // We want to track firewalld configuration so that + // if it is started/reloaded, the rules can be applied correctly {d.config.EnableIPTables, network.setupFirewalld}, // same for IPv6 {config.EnableIPv6 && d.config.EnableIP6Tables, network.setupFirewalld6}, @@ -788,7 +788,7 @@ func (d *driver) createNetwork(config *networkConfiguration) (err error) { // Add inter-network communication rules. {d.config.EnableIPTables, setupNetworkIsolationRules}, - //Configure bridge networking filtering if ICC is off and IP tables are enabled + // Configure bridge networking filtering if ICC is off and IP tables are enabled {!config.EnableICC && d.config.EnableIPTables, setupBridgeNetFiltering}, } { if step.Condition {