From 3bf67405faed9fc5c2d07024b0775e0d363651a6 Mon Sep 17 00:00:00 2001 From: Han Zhou Date: Thu, 2 Nov 2023 22:36:56 -0700 Subject: [PATCH] physical: Fix else-if typo. It is not causing any problem so far, but fix it to avoid potential problem in the future. Fixes: c6b20c9940ed ("ovn-ic: Support IGMP/MLD in multi-AZ deployments.") Signed-off-by: Han Zhou Acked-by: Mark Michelson --- controller/physical.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controller/physical.c b/controller/physical.c index 2338561ec3..ba88e1d8b4 100644 --- a/controller/physical.c +++ b/controller/physical.c @@ -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; }