mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
Allow minimum and maximum sweep size be the same.
Submitted by: maxim
This commit is contained in:
parent
3b2bb13317
commit
bb7dfe5e49
1 changed files with 2 additions and 2 deletions
|
|
@ -793,8 +793,8 @@ main(int argc, char *const *argv)
|
|||
}
|
||||
#endif
|
||||
if (sweepmax) {
|
||||
if (sweepmin >= sweepmax)
|
||||
errx(EX_USAGE, "Maximum packet size must be greater than the minimum packet size");
|
||||
if (sweepmin > sweepmax)
|
||||
errx(EX_USAGE, "Maximum packet size must be no less than the minimum packet size");
|
||||
|
||||
if (datalen != DEFDATALEN)
|
||||
errx(EX_USAGE, "Packet size and ping sweep are mutually exclusive");
|
||||
|
|
|
|||
Loading…
Reference in a new issue