aboutsummaryrefslogtreecommitdiff
path: root/networking
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2006-08-01 00:30:26 +0000
committerRob Landley <rob@landley.net>2006-08-01 00:30:26 +0000
commitcae61e7ca4200e976de1a790075ef1d7b5317bb2 (patch)
tree30116aecdca321830e11fadfd6dab36eb3de99e2 /networking
parent2aced7ea043aff64bd4e5f2814818fb4d0c803d4 (diff)
downloadbusybox-cae61e7ca4200e976de1a790075ef1d7b5317bb2.tar.gz
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);