From f22640842304361b978214443e3b7ccb085f44bc Mon Sep 17 00:00:00 2001 From: Sam Erde Date: Wed, 24 Jul 2024 11:47:11 -0400 Subject: [PATCH] Removed extraneous 'dhcpServer' line that broke the build. --- Private/Get/Get-BTNameProtectionConfiguration.ps1 | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Private/Get/Get-BTNameProtectionConfiguration.ps1 b/Private/Get/Get-BTNameProtectionConfiguration.ps1 index 3f66e41..fabfdb2 100644 --- a/Private/Get/Get-BTNameProtectionConfiguration.ps1 +++ b/Private/Get/Get-BTNameProtectionConfiguration.ps1 @@ -11,7 +11,6 @@ function Get-BTNameProtectionConfiguration { $NameProtectionConfigurationList = @() - dHCPServer foreach ($dhcpServer in $DHCPServers) { $NameProtectionv4Configuration = (Get-DhcpServerv4DnsSetting -ComputerName $dhcpServer.IPAddress).NameProtection $NameProtectionv6Configuration = (Get-DhcpServerv6DnsSetting -ComputerName $dhcpServer.IPAddress).NameProtection @@ -28,4 +27,4 @@ function Get-BTNameProtectionConfiguration { } $NameProtectionConfigurationList -} \ No newline at end of file +}