mirror of
https://github.com/nmap/nmap.git
synced 2026-08-27 03:48:14 +00:00
Fix a bug in qscan.nse which kept a confidence level of 0.9995 from working;
Marcin Hoffmann reported the problem.
This commit is contained in:
parent
8174849509
commit
3a0aa06db1
2 changed files with 5 additions and 1 deletions
|
|
@ -283,7 +283,7 @@ local getopts = function()
|
|||
|
||||
if conf ~= 0.75 and conf ~= 0.9 and
|
||||
conf ~= 0.95 and conf ~= 0.975 and
|
||||
conf ~= 0.99 and conf ~= 0.995 and conf ~= 0.995 then
|
||||
conf ~= 0.99 and conf ~= 0.995 and conf ~= 0.9995 then
|
||||
bool = false
|
||||
err = "Invalid confidence level"
|
||||
end
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue