From 7590f763dc2d75d121ddc429278cbec006377086 Mon Sep 17 00:00:00 2001 From: Igor Zhukov Date: Thu, 19 Oct 2023 11:31:29 +0700 Subject: [PATCH] fix a copy-paste typo Although this typo does not cause a real error. Look at my test: https://gcc.godbolt.org/z/hdKc389vd Signed-off-by: Igor Zhukov Signed-off-by: 0-day Robot --- controller/ofctrl.c | 2 +- northd/northd.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/controller/ofctrl.c b/controller/ofctrl.c index a1676a7883..63b0aa975b 100644 --- a/controller/ofctrl.c +++ b/controller/ofctrl.c @@ -2202,7 +2202,7 @@ ofctrl_meter_bands_alloc(const struct sbrec_meter *sb_meter, struct ovn_extend_table_info *entry, struct ovs_list *msgs) { - struct meter_band_entry *mb = mb = xzalloc(sizeof *mb); + struct meter_band_entry *mb = xzalloc(sizeof *mb); mb->n_bands = sb_meter->n_bands; mb->bands = xcalloc(mb->n_bands, sizeof *mb->bands); for (int i = 0; i < sb_meter->n_bands; i++) { diff --git a/northd/northd.c b/northd/northd.c index 916068d44a..f8b046d83e 100644 --- a/northd/northd.c +++ b/northd/northd.c @@ -15765,7 +15765,7 @@ build_lrouter_nat_defrag_and_lb(struct ovn_datapath *od, struct hmap *lflows, !lport_addresses_is_empty(&od->lb_force_snat_addrs); for (int i = 0; i < od->nbr->n_nat; i++) { - const struct nbrec_nat *nat = nat = od->nbr->nat[i]; + const struct nbrec_nat *nat = od->nbr->nat[i]; struct eth_addr mac = eth_addr_broadcast; bool is_v6, distributed_nat; ovs_be32 mask;