]> xenbits.xensource.com Git - people/liuw/libxenctrl-split/libvirt.git/commitdiff
network: fix incorrect VIR_NETWORK_UPDATE_COMMAND_* values
authorLaine Stump <laine@laine.org>
Wed, 19 Sep 2012 11:40:30 +0000 (07:40 -0400)
committerLaine Stump <laine@laine.org>
Wed, 19 Sep 2012 14:39:31 +0000 (10:39 -0400)
These enums originally were put into the flags for virNetworkUpdate,
and when they were moved into their own enum, the numbers weren't
appropriately changed, causing the commands to start with value 2
instead of 1. This causes problems for things like ENUM_IMPL, which
wants a string for every value in the requested range, including those
not used in the enum.

include/libvirt/libvirt.h.in

index 84ac2d0612ac1d26d0e761694572d35ea506edb9..0f67cbb27b0f0316788682b8e9782cefcb867840 100644 (file)
@@ -2356,10 +2356,10 @@ int                     virNetworkUndefine      (virNetworkPtr network);
  */
 typedef enum {
     VIR_NETWORK_UPDATE_COMMAND_NONE      = 0, /* (invalid) */
-    VIR_NETWORK_UPDATE_COMMAND_MODIFY    = 2, /* modify an existing element */
-    VIR_NETWORK_UPDATE_COMMAND_DELETE    = 3, /* delete an existing element */
-    VIR_NETWORK_UPDATE_COMMAND_ADD_LAST  = 4, /* add an element at end of list */
-    VIR_NETWORK_UPDATE_COMMAND_ADD_FIRST = 5, /* add an element at start of list */
+    VIR_NETWORK_UPDATE_COMMAND_MODIFY    = 1, /* modify an existing element */
+    VIR_NETWORK_UPDATE_COMMAND_DELETE    = 2, /* delete an existing element */
+    VIR_NETWORK_UPDATE_COMMAND_ADD_LAST  = 3, /* add an element at end of list */
+    VIR_NETWORK_UPDATE_COMMAND_ADD_FIRST = 4, /* add an element at start of list */
 #ifdef VIR_ENUM_SENTINELS
     VIR_NETWORK_UPDATE_COMMAND_LAST
 #endif