ovs-ctl: Fix incorrect error message.
authorBen Pfaff <blp@nicira.com>
Thu, 23 Jun 2011 16:46:50 +0000 (09:46 -0700)
committerBen Pfaff <blp@nicira.com>
Thu, 23 Jun 2011 18:15:37 +0000 (11:15 -0700)
The sense of the test was wrong.

Bug #6071.

utilities/ovs-ctl.in

index 4d1ce1881712e802d59673a63b5972ce47944160..d316adf023b701393b302efe09624b51f1623039 100755 (executable)
@@ -302,9 +302,9 @@ enable_protocol () {
                 ;;
         esac
     elif (iptables --version) >/dev/null 2>&1; then
-        action "iptables binary not installed, not adding a rule for $name"
-    else
         action "cannot list iptables rules, not adding a rule for $name"
+    else
+        action "iptables binary not installed, not adding a rule for $name"
     fi
 }