ovs-ctl: Drop back to an empty database if schema conversion fails.
[openvswitch] / lib / ofp-print.c
index 4f4e33c51c750b5a1b80b9333d0fadddd67787e4..cb361a633f2a5c5b3a58f1da1bf77c716a12cc45 100644 (file)
@@ -26,6 +26,7 @@
 #include <stdlib.h>
 #include <ctype.h>
 
+#include "bundle.h"
 #include "byte-order.h"
 #include "compiler.h"
 #include "dynamic-string.h"
@@ -342,6 +343,11 @@ ofp_print_action(struct ds *s, const union ofp_action *a,
         ds_put_char(s, ')');
         break;
 
+    case OFPUTIL_NXAST_BUNDLE:
+    case OFPUTIL_NXAST_BUNDLE_LOAD:
+        bundle_format((const struct nx_action_bundle *) a, s);
+        break;
+
     default:
         break;
     }