From: Ben Pfaff Date: Wed, 14 Jan 2009 00:21:55 +0000 (-0800) Subject: vswitchd: Fix typo in comment. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c22ddce9a063fa57e536854024cf7822c706e021;p=openvswitch vswitchd: Fix typo in comment. --- diff --git a/vswitchd/bridge.c b/vswitchd/bridge.c index dde048b9..510f6404 100644 --- a/vswitchd/bridge.c +++ b/vswitchd/bridge.c @@ -2211,7 +2211,7 @@ flowstats_process(struct bridge *br) f = ft_lookup(br->ft, &flow, hash); if (f) { - /* Move from bt->ft to new_ft. */ + /* Move from br->ft to new_ft. */ ft_remove(br->ft, f); hmap_insert_fast(&new_ft->flows, &f->node, f->node.hash);