Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2006-08-01 04:30:26 +0400
committerRob Landley <rob@landley.net>2006-08-01 04:30:26 +0400
commitcae61e7ca4200e976de1a790075ef1d7b5317bb2 (patch)
tree30116aecdca321830e11fadfd6dab36eb3de99e2 /networking
parent2aced7ea043aff64bd4e5f2814818fb4d0c803d4 (diff)
Make a gcc 4.1 warning go away.
Diffstat (limited to 'networking')
-rw-r--r--networking/ping.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/ping.c b/networking/ping.c
index 518265668..5cd6f4a1a 100644
--- a/networking/ping.c
+++ b/networking/ping.c
@@ -211,7 +211,7 @@ static void sendping(int junk)
pkt->icmp_type = ICMP_ECHO;
pkt->icmp_code = 0;
pkt->icmp_cksum = 0;
- pkt->icmp_seq = htons(ntransmitted++);
+ pkt->icmp_seq = SWAP_BE16(ntransmitted++);
pkt->icmp_id = myid;
CLR(ntohs(pkt->icmp_seq) % MAX_DUP_CHK);