diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2008-12-04 13:21:36 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2008-12-04 13:21:36 +0000 |
commit | 92b9ca8dd295702625b38673509dde073ece8915 (patch) | |
tree | 7462b260a370c0856d5291deab6fbc93031434b9 /package/busybox/busybox-1.13.1-ip.patch | |
parent | 5155de9042493f91c2f37e81656ac960dfcec49d (diff) | |
download | buildroot-novena-92b9ca8dd295702625b38673509dde073ece8915.tar.gz buildroot-novena-92b9ca8dd295702625b38673509dde073ece8915.zip |
busybox: 1.13.1 ip fix
Diffstat (limited to 'package/busybox/busybox-1.13.1-ip.patch')
-rw-r--r-- | package/busybox/busybox-1.13.1-ip.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/package/busybox/busybox-1.13.1-ip.patch b/package/busybox/busybox-1.13.1-ip.patch new file mode 100644 index 000000000..50a9b2701 --- /dev/null +++ b/package/busybox/busybox-1.13.1-ip.patch @@ -0,0 +1,11 @@ +--- busybox-1.13.1/networking/ip.c Sun Nov 9 18:27:59 2008 ++++ busybox-1.13.1-ip/networking/ip.c Thu Dec 4 13:16:29 2008 +@@ -31,7 +31,7 @@ + + static int ip_do(int (*ip_func)(char **argv), char **argv) + { +- argv = ip_parse_common_args(argv); ++ argv = ip_parse_common_args(argv + 1); + return ip_func(argv); + } + |