mirror of
https://github.com/nmap/nmap.git
synced 2026-06-11 02:26:11 +00:00
Okay, I'm sorry for committing for just a whitespace issue, but this confused the hell out of me because I completely missed that assignment :)
This commit is contained in:
parent
46dc926888
commit
f68df9d91c
1 changed files with 2 additions and 1 deletions
3
nmap.cc
3
nmap.cc
|
|
@ -725,7 +725,8 @@ int nmap_main(int argc, char *argv[]) {
|
|||
if (o.min_parallelism > 100) {
|
||||
error("Warning: Your --min-parallelism option is pretty high! This can hurt reliability.");
|
||||
}
|
||||
} else if (optcmp(long_options[option_index].name, "host-timeout") == 0) { l = tval2msecs(optarg);
|
||||
} else if (optcmp(long_options[option_index].name, "host-timeout") == 0) {
|
||||
l = tval2msecs(optarg);
|
||||
if (l <= 1500) fatal("--host-timeout is specified in milliseconds unless you qualify it by appending 's', 'm', 'h', or 'd'. The value must be greater than 1500 milliseconds");
|
||||
pre_host_timeout = l;
|
||||
if (l < 15000) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue