diff options
author | Kevin Robertson <robertsonk@gmail.com> | 2018-07-21 23:12:08 -0400 |
---|---|---|
committer | Kevin Robertson <robertsonk@gmail.com> | 2018-07-21 23:12:08 -0400 |
commit | 22f62e183192bd08f99869960489406b95dc731a (patch) | |
tree | 05782f6ba8d1ec40154b7afe97fde9529d79b86c | |
parent | 0309c11e16e3dab40ac884d2029643b839bc39ff (diff) | |
download | Powermad-22f62e183192bd08f99869960489406b95dc731a.tar.gz Powermad-22f62e183192bd08f99869960489406b95dc731a.zip |
output fix
-rw-r--r-- | Powermad.ps1 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Powermad.ps1 b/Powermad.ps1 index 9d41b6d..285b198 100644 --- a/Powermad.ps1 +++ b/Powermad.ps1 @@ -3158,14 +3158,14 @@ function New-DNSRecordArray } catch { - Write-Output "[-] Error finding local IP, specify manually with -DNSData" + Write-Output "[-] Error finding local IP, specify manually with -Data" throw } } elseif(!$Data) { - Write-Output "[-] -DNSData required with record type $Type" + Write-Output "[-] -Data required with record type $Type" throw } |