mirror of
https://github.com/nmap/nmap.git
synced 2026-08-04 06:40:48 +00:00
Fix a typo (minimum vs maximum)
This commit is contained in:
parent
39e3463061
commit
f9474cd0fd
1 changed files with 1 additions and 1 deletions
|
|
@ -629,7 +629,7 @@ void NmapOps::setMinHostGroupSz(unsigned int sz) {
|
|||
|
||||
void NmapOps::setMaxHostGroupSz(unsigned int sz) {
|
||||
if (sz < min_host_group_sz)
|
||||
fatal("Maximum host group size may not be set to less than the maximum size (currently %d)\n", min_host_group_sz);
|
||||
fatal("Maximum host group size may not be set to less than the minimum size (currently %d)\n", min_host_group_sz);
|
||||
if (sz <= 0)
|
||||
fatal("Max host size must be at least 1");
|
||||
max_host_group_sz = sz;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue