Signed-off-by: Ben Pfaff <b...@nicira.com> --- vswitchd/bridge.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/vswitchd/bridge.c b/vswitchd/bridge.c index 4ac2b26..578c678 100644 --- a/vswitchd/bridge.c +++ b/vswitchd/bridge.c @@ -816,11 +816,8 @@ bridge_configure_flow_miss_model(const char *opt) if (opt) { if (strcmp(opt, "with-facets")) { model = OFPROTO_HANDLE_MISS_WITH_FACETS; - VLOG_INFO("Handling all flow misses by creating facets.\n"); - } - if (strcmp(opt, "without-facets")) { + } else if (strcmp(opt, "without-facets")) { model = OFPROTO_HANDLE_MISS_WITHOUT_FACETS; - VLOG_INFO("Handling all flow misses without creating facets.\n"); } } -- 1.7.10.4 _______________________________________________ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev