Both the old (wrong) and new (correct) enums have the same value, so this
doesn't fix a visible bug.

Reported-by: ankur dwivedi <[email protected]>
Signed-off-by: Ben Pfaff <[email protected]>
---
 AUTHORS          |    1 +
 lib/dpif-linux.c |    2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/AUTHORS b/AUTHORS
index 7642aee..0f3db58 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -223,6 +223,7 @@ YAMAMOTO Takashi        [email protected]
 Yeming Zhao             [email protected]
 Ying Chen               [email protected]
 Yongqiang Liu           [email protected]
+ankur dwivedi           [email protected]
 kk yap                  [email protected]
 likunyun                [email protected]
 rahim entezari          [email protected]
diff --git a/lib/dpif-linux.c b/lib/dpif-linux.c
index e2300d6..7d66c75 100644
--- a/lib/dpif-linux.c
+++ b/lib/dpif-linux.c
@@ -963,7 +963,7 @@ dpif_linux_flow_dump_start(const struct dpif *dpif_, void 
**statep)
     *statep = state = xmalloc(sizeof *state);
 
     dpif_linux_flow_init(&request);
-    request.cmd = OVS_DP_CMD_GET;
+    request.cmd = OVS_FLOW_CMD_GET;
     request.dp_ifindex = dpif->dp_ifindex;
 
     buf = ofpbuf_new(1024);
-- 
1.7.10.4

_______________________________________________
dev mailing list
[email protected]
http://openvswitch.org/mailman/listinfo/dev

Reply via email to