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

Fix sign and width issues around max_ips_to_scan. Fixes #2838. Fixes #2836

This commit is contained in:
dmiller
2024-06-04 18:22:17 +00:00
parent e4a4b2854f
commit 03c9f34959
5 changed files with 26 additions and 16 deletions

View File

@@ -74,7 +74,7 @@ public:
/* The maximum number of entries we want to allow storing in defer_buffer. */
static const unsigned int DEFER_LIMIT = 64;
HostGroupState(int lookahead, int randomize, int num_random, int argc, const char *argv[]);
HostGroupState(int lookahead, int randomize, unsigned long num_random, int argc, const char *argv[]);
~HostGroupState();
Target **hostbatch;