From: Ben Pfaff Date: Thu, 4 Jun 2009 22:35:44 +0000 (-0700) Subject: vswitch: Fix typo in log message. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=901d6a056dd0a4ac40563dccf8e4ec24193e96aa;p=openvswitch vswitch: Fix typo in log message. --- diff --git a/vswitchd/bridge.c b/vswitchd/bridge.c index 869efe62..ce23a318 100644 --- a/vswitchd/bridge.c +++ b/vswitchd/bridge.c @@ -1364,7 +1364,7 @@ bond_run(struct bridge *br) iface->enabled = !iface->enabled; VLOG_WARN("interface %s: %s", iface->name, - iface->enabled ? "enable" : "disabled"); + iface->enabled ? "enabled" : "disabled"); if (!iface->enabled) { ofproto_revalidate(br->ofproto, iface->tag); if (iface->port_ifidx == port->active_iface) {