projects
/
openvswitch
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
86014a2
)
ovs-ctl: Fix incorrect error message.
author
Ben Pfaff
<blp@nicira.com>
Thu, 23 Jun 2011 16:46:50 +0000
(09:46 -0700)
committer
Ben 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
patch
|
blob
|
history
diff --git
a/utilities/ovs-ctl.in
b/utilities/ovs-ctl.in
index 4d1ce1881712e802d59673a63b5972ce47944160..d316adf023b701393b302efe09624b51f1623039 100755
(executable)
--- a/
utilities/ovs-ctl.in
+++ b/
utilities/ovs-ctl.in
@@
-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
}