- Start the sequence number at 1 instead of 0
authorCameron Gutman <aicommander@gmail.com>
Sun, 25 Oct 2009 03:48:15 +0000 (03:48 +0000)
committerCameron Gutman <aicommander@gmail.com>
Sun, 25 Oct 2009 03:48:15 +0000 (03:48 +0000)
svn path=/trunk/; revision=43731

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

index 3901d26..eaae762 100644 (file)
@@ -338,7 +338,7 @@ static BOOL Setup(VOID)
         Target.sin_family = AF_INET;
 
     TargetIP = inet_ntoa(Target.sin_addr);
-    CurrentSeqNum = 0;
+    CurrentSeqNum = 1;
     SentCount = 0;
     LostCount = 0;
     MinRTT.QuadPart = 0;