Adding "-SyncWindow 0" flag to Compare-Object call (#34656)

Adding "-SyncWindow 0" flag to the Compare-Object call used to determine if the existing and proposed IP address lists are the same.  This makes the array comparison mark changes in order as a difference.

Fix for bug #34651
This commit is contained in:
chriskarel 2018-01-11 15:43:02 -06:00 committed by Jordan Borean
parent 2d4a43bb0a
commit bb9dcb0d2b

View file

@ -140,7 +140,7 @@ Function Get-DnsClientMatch {
}
Else {
$v4_match = @(Compare-Object $current_dns_v4 $ipv4_addresses).Count -eq 0
$v4_match = @(Compare-Object $current_dns_v4 $ipv4_addresses -SyncWindow 0).Count -eq 0
}
# TODO: implement IPv6