mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-04-21 12:27:27 +03:00
update busybox to v1.3.1, i was too lazy to update patch 320, feel free to do so
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5941 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
24
package/busybox/patches/120-ping-no_warnings.patch
Normal file
24
package/busybox/patches/120-ping-no_warnings.patch
Normal file
@@ -0,0 +1,24 @@
|
||||
--- busybox-1.3.1/networking/ping.c 2006-12-27 05:52:39.000000000 +0100
|
||||
+++ busybox-1.3.1-new/networking/ping.c 2006-12-29 18:42:36.000000000 +0100
|
||||
@@ -217,7 +217,8 @@
|
||||
pkt->icmp_type = ICMP_ECHO;
|
||||
pkt->icmp_code = 0;
|
||||
pkt->icmp_cksum = 0;
|
||||
- pkt->icmp_seq = htons(ntransmitted++);
|
||||
+ pkt->icmp_seq = htons(ntransmitted);
|
||||
+ ntransmitted++;
|
||||
pkt->icmp_id = myid;
|
||||
CLR(ntohs(pkt->icmp_seq) % MAX_DUP_CHK);
|
||||
|
||||
--- busybox-1.3.1/networking/ping6.c 2006-12-27 05:52:39.000000000 +0100
|
||||
+++ busybox-1.3.1-new/networking/ping6.c 2006-12-29 18:44:02.000000000 +0100
|
||||
@@ -205,7 +205,8 @@
|
||||
pkt->icmp6_type = ICMP6_ECHO_REQUEST;
|
||||
pkt->icmp6_code = 0;
|
||||
pkt->icmp6_cksum = 0;
|
||||
- pkt->icmp6_seq = htons(ntransmitted++);
|
||||
+ pkt->icmp6_seq = htons(ntransmitted);
|
||||
+ ntransmitted++;
|
||||
pkt->icmp6_id = myid;
|
||||
CLR(pkt->icmp6_seq % MAX_DUP_CHK);
|
||||
|
||||
Reference in New Issue
Block a user