Skip to content

Commit

Permalink
physical: Fix else-if typo.
Browse files Browse the repository at this point in the history
It is not causing any problem so far, but fix it to avoid potential
problem in the future.

Fixes: c6b20c9 ("ovn-ic: Support IGMP/MLD in multi-AZ deployments.")
Signed-off-by: Han Zhou <[email protected]>
Acked-by: Mark Michelson <[email protected]>
  • Loading branch information
hzhou8 committed Nov 7, 2023
1 parent f49306c commit 3bf6740
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion controller/physical.c
Original file line number Diff line number Diff line change
Expand Up @@ -2102,7 +2102,7 @@ consider_mc_group(struct ovsdb_idl_index *sbrec_port_binding_by_name,
remote_ramp_ports = true;
remote_ports = true;
}
} if (!strcmp(port->type, "remote")) {
} else if (!strcmp(port->type, "remote")) {
if (port->chassis) {
remote_ports = true;
}
Expand Down

0 comments on commit 3bf6740

Please sign in to comment.