ovsdb: Fix uninitialized data;.
[openvswitch] / ofproto / fail-open.c
index ba6dbcfa8a10e803a2fc48488ff4411c4394d557..cd1db94c52614d1bcab933d805a019191bf4a110 100644 (file)
@@ -294,7 +294,7 @@ fail_open_flushed(struct fail_open *fo)
         action.output.port = htons(OFPP_NORMAL);
 
         cls_rule_init_catchall(&rule, FAIL_OPEN_PRIORITY);
-        ofproto_add_flow(fo->ofproto, &rule, &action, 1, 0);
+        ofproto_add_flow(fo->ofproto, &rule, &action, 1);
     }
 }