Skip to content

Commit fcb80fe

Browse files
committed
- Start the sequence number at 1 instead of 0
svn path=/trunk/; revision=43731
1 parent 0f28831 commit fcb80fe

File tree

1 file changed

+1
-1
lines changed
  • reactos/base/applications/network/ping

1 file changed

+1
-1
lines changed

reactos/base/applications/network/ping/ping.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ static BOOL Setup(VOID)
338338
Target.sin_family = AF_INET;
339339

340340
TargetIP = inet_ntoa(Target.sin_addr);
341-
CurrentSeqNum = 0;
341+
CurrentSeqNum = 1;
342342
SentCount = 0;
343343
LostCount = 0;
344344
MinRTT.QuadPart = 0;

0 commit comments

Comments
 (0)