From 303a10c010f383b4ddb71a89bedf9c52ed2bbd8d Mon Sep 17 00:00:00 2001 From: IMcPwn Date: Sun, 27 Sep 2015 17:58:48 -0400 Subject: [PATCH] Fix misspellings of missing --- modules/nmap-scan | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/nmap-scan b/modules/nmap-scan index 4e84442..0db183b 100755 --- a/modules/nmap-scan +++ b/modules/nmap-scan @@ -18,13 +18,13 @@ function start { nmap_profile=$(uci get nmap.profile) nmap_log=$(uci get nmap.log) if [ -z "$nmap_target" ]; then - echo "nmap module missig target configuration";exit + echo "nmap module missing target configuration";exit fi if [ -z "$nmap_profile" ]; then - echo "nmap module missig profile configuration";exit + echo "nmap module missing profile configuration";exit fi if [ -z "$nmap_log" ]; then - echo "nmap module missig log configuration";exit + echo "nmap module missing log configuration";exit fi case $nmap_profile in 1) PROFILE="-T4 -A -v";;