Skip to content

Commit

Permalink
ovn-controller: Call ofctrl_inject_pkt() with correct argument order.
Browse files Browse the repository at this point in the history
Signed-off-by: Xu Rong <xu.rong@zte.com.cn>
Signed-off-by: Ben Pfaff <blp@ovn.org>
  • Loading branch information
xurong00037997 authored and blp committed Nov 2, 2018
1 parent 9a98793 commit 2447bb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ovn/controller/ovn-controller.c
Expand Up @@ -792,7 +792,7 @@ main(int argc, char *argv[])

if (pending_pkt.conn) {
char *error = ofctrl_inject_pkt(br_int, pending_pkt.flow_s,
&port_groups, &addr_sets);
&addr_sets, &port_groups);
if (error) {
unixctl_command_reply_error(pending_pkt.conn, error);
free(error);
Expand Down

0 comments on commit 2447bb0

Please sign in to comment.