Fixes error message.

This commit is contained in:
Avesh Agarwal 2015-09-15 14:37:56 -04:00
parent 9ae90d2149
commit a84e49aaab

View File

@ -214,7 +214,7 @@ func CleanupLeftovers(ipt iptables.Interface) (encounteredError bool) {
encounteredError = true
} else {
if err = ipt.DeleteChain(iptables.TableNAT, c); err != nil {
glog.Errorf("Error flushing userspace chain: %v", err)
glog.Errorf("Error deleting userspace chain: %v", err)
encounteredError = true
}
}