Skip to content

Commit

Permalink
Fix incorrect current_os check for minmdns. (#24924)
Browse files Browse the repository at this point in the history
There is no "darwin" value for current_os, so the check was always false.
  • Loading branch information
bzbarsky-apple authored and pull[bot] committed Jul 4, 2023
1 parent ee4fb0f commit e5b82b0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/lib/core/core.gni
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,8 @@ declare_args() {
# When not set, CHIP_CONFIG_MAX_FABRICS is used for static allocation
# of tracking information for operational advertisement.
chip_config_minmdns_dynamic_operational_responder_list =
current_os == "linux" || current_os == "android" || current_os == "darwin"
current_os == "linux" || current_os == "android" || current_os == "mac" ||
current_os == "ios"

# When using minmdns, set the number of parallel resolves
chip_config_minmdns_max_parallel_resolves = 2
Expand Down

0 comments on commit e5b82b0

Please sign in to comment.