From ab495ab0d0a340dc45ce283dd7e2de6110485156 Mon Sep 17 00:00:00 2001 From: Alexander Morozov Date: Mon, 19 Oct 2015 14:19:21 -0700 Subject: [PATCH] Use more clear message for icc=false + iptables=false Signed-off-by: Alexander Morozov --- daemon/daemon_unix.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/daemon_unix.go b/daemon/daemon_unix.go index 3e6c7a6a43..65adcd2f0f 100644 --- a/daemon/daemon_unix.go +++ b/daemon/daemon_unix.go @@ -245,7 +245,7 @@ func checkConfigOptions(config *Config) error { return fmt.Errorf("You specified -b & --bip, mutually exclusive options. Please specify only one.") } if !config.Bridge.EnableIPTables && !config.Bridge.InterContainerCommunication { - return fmt.Errorf("You specified --iptables=false with --icc=false. ICC uses iptables to function. Please set --icc or --iptables to true.") + return fmt.Errorf("You specified --iptables=false with --icc=false. ICC=false uses iptables to function. Please set --icc or --iptables to true.") } if !config.Bridge.EnableIPTables && config.Bridge.EnableIPMasq { config.Bridge.EnableIPMasq = false