fix error with misArg not being declared

also fixed test to work on empty string or not for error reporting
pull/18777/head
Brian Coca 9 years ago committed by Matt Clay
parent d9337fbd9c
commit 8687151f7c

@ -205,6 +205,7 @@ $direction=Get-Attr $params "direction" "";
$force=Get-Attr $params "force" $false;
$action=Get-Attr $params "action" "";
$misArg = ''
# Check the arguments
if ($enable -ne $null) {
if ($enable -eq $true) {
@ -262,7 +263,7 @@ foreach ($arg in $args){
$winprofile=Get-Attr $params "profile" "current";
$fwsettings.Add("profile", $winprofile)
if ($($($misArg|measure).count) -gt 0){
if ($misArg){
$result=New-Object psobject @{
changed=$false
failed=$true

Loading…
Cancel
Save