Fix misspellings of missing

pull/10/head
IMcPwn 2015-09-27 17:58:48 -04:00
parent ba28490073
commit 303a10c010
1 changed files with 3 additions and 3 deletions

View File

@ -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";;