mirror of
https://github.com/nmap/nmap.git
synced 2026-08-28 12:31:12 +00:00
Use hex constant for packet count.
This commit is contained in:
parent
8e4b48adce
commit
c9d5dc20e4
1 changed files with 1 additions and 1 deletions
|
|
@ -610,7 +610,7 @@ bool NpingOps::issetShowSentPackets(){
|
|||
int NpingOps::setPacketCount(u32 val){
|
||||
/* If zero is supplied, set highest value */
|
||||
if( val==0 )
|
||||
pcount=4294967295u;
|
||||
this->pcount=0xFFFFFFFF;
|
||||
else
|
||||
pcount=val;
|
||||
this->pcount_set=true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue