From: Ben Pfaff Date: Thu, 16 Aug 2012 16:31:23 +0000 (-0700) Subject: ofproto-dpif: Fix typo in comment. X-Git-Tag: sliver-openvswitch-1.8.90-0~48^2~43 X-Git-Url: http://git.onelab.eu/?p=sliver-openvswitch.git;a=commitdiff_plain;h=4e090bc7bfe6993f568701d3fdf9c2621babd03c ofproto-dpif: Fix typo in comment. Signed-off-by: Ben Pfaff --- diff --git a/ofproto/ofproto-dpif.c b/ofproto/ofproto-dpif.c index 773780042..a7e85dea8 100644 --- a/ofproto/ofproto-dpif.c +++ b/ofproto/ofproto-dpif.c @@ -2583,7 +2583,7 @@ port_get_stats(const struct ofport *ofport_, struct netdev_stats *stats) /* ofproto->stats.rx_packets represents packets that were received on * some port and we processed internally and dropped (e.g. STP). - * Account fro them as if they had been forwarded to OFPP_LOCAL. */ + * Account for them as if they had been forwarded to OFPP_LOCAL. */ if (stats->tx_packets != UINT64_MAX) { stats->tx_packets += ofproto->stats.rx_packets;