Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion meta/sai_meta.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6761,7 +6761,7 @@ sai_status_t meta_sai_flush_fdb_entries(

auto status = flush_fdb_entries(switch_id, attr_count, attr_list);

if (status = SAI_STATUS_SUCCESS)
if (SAI_STATUS_SUCCESS == status)
{
// use same logic as notification, so create notification event

Expand Down Expand Up @@ -6819,6 +6819,8 @@ sai_status_t meta_sai_flush_fdb_entries(
meta_sai_on_fdb_flush_event_consolidated(data);
}
}

return status;
}

// NAT
Expand Down