From 6f734d61230d3ddbecf6cf1b14673696e249ebed Mon Sep 17 00:00:00 2001 From: Andrew Munger Date: Fri, 7 Jul 2006 13:23:10 +0000 Subject: [PATCH] Convert sequence number to network byte order before sending it on the wire. svn path=/trunk/; revision=22898 --- reactos/base/applications/network/ping/ping.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/base/applications/network/ping/ping.c b/reactos/base/applications/network/ping/ping.c index 6a9b679760c..758112493a7 100644 --- a/reactos/base/applications/network/ping/ping.c +++ b/reactos/base/applications/network/ping/ping.c @@ -489,7 +489,7 @@ static BOOL Ping(VOID) Packet->Icmp.Type = ICMPMSG_ECHOREQUEST; Packet->Icmp.Code = 0; Packet->Icmp.Id = (USHORT)GetCurrentProcessId(); - Packet->Icmp.SeqNum = (USHORT)CurrentSeqNum; + Packet->Icmp.SeqNum = htons((USHORT)CurrentSeqNum); Packet->Icmp.Checksum = 0; /* Timestamp is part of data area */