1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-06 04:31:29 +00:00

Fix a typo (minimum vs maximum)

This commit is contained in:
dmiller
2014-10-29 05:31:07 +00:00
parent 39e3463061
commit f9474cd0fd

View File

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