Skip to content

Commit

Permalink
dpif-netlink: Fix windows build.
Browse files Browse the repository at this point in the history
Commit 7af12bd "dpif: Generate flow_hash for revalidators in dpif."
broke compilation on windows. Fix it.

Signed-off-by: Joe Stringer <joestringer@nicira.com>
Acked-by: Ben Pfaff <blp@nicira.com>
  • Loading branch information
joestringer committed Nov 26, 2014
1 parent a5ef74e commit 27edb4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/dpif-netlink.c
Expand Up @@ -1977,7 +1977,7 @@ dpif_netlink_recv_windows(struct dpif_netlink *dpif, uint32_t handler_id,
return error;
}

error = parse_odp_packet(buf, upcall, &dp_ifindex);
error = parse_odp_packet(dpif, buf, upcall, &dp_ifindex);
if (!error && dp_ifindex == dpif->dp_ifindex) {
return 0;
} else if (error) {
Expand Down

0 comments on commit 27edb4a

Please sign in to comment.