From 54255463b27e650d0717a33ae0cedac66863eb93 Mon Sep 17 00:00:00 2001 From: Peter Korsgaard Date: Thu, 14 Feb 2008 15:49:48 +0000 Subject: busybox: bump version to 1.9.1 --- package/busybox/busybox-1.9.0-iproute.patch | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 package/busybox/busybox-1.9.0-iproute.patch (limited to 'package/busybox/busybox-1.9.0-iproute.patch') diff --git a/package/busybox/busybox-1.9.0-iproute.patch b/package/busybox/busybox-1.9.0-iproute.patch deleted file mode 100644 index 4813aa3c6..000000000 --- a/package/busybox/busybox-1.9.0-iproute.patch +++ /dev/null @@ -1,25 +0,0 @@ -diff -urN busybox-1.9.0/networking/libiproute/iproute.c busybox-1.9.0-iproute/networking/libiproute/iproute.c ---- busybox-1.9.0/networking/libiproute/iproute.c 2007-12-21 22:00:23.000000000 +0000 -+++ busybox-1.9.0-iproute/networking/libiproute/iproute.c 2008-01-04 15:18:33.000000000 +0000 -@@ -841,15 +841,17 @@ - /*0-3*/ "add\0""append\0""change\0""chg\0" - /*4-7*/ "delete\0""get\0""list\0""show\0" - /*8..*/ "prepend\0""replace\0""test\0""flush\0"; -- int command_num = 6; -+ int command_num; - unsigned flags = 0; - int cmd = RTM_NEWROUTE; - -+ if (!*argv) -+ return iproute_list_or_flush(argv, 0); -+ - /* "Standard" 'ip r a' treats 'a' as 'add', not 'append' */ - /* It probably means that it is using "first match" rule */ -- if (*argv) { -- command_num = index_in_substrings(ip_route_commands, *argv); -- } -+ command_num = index_in_substrings(ip_route_commands, *argv); -+ - switch (command_num) { - case 0: /* add */ - flags = NLM_F_CREATE|NLM_F_EXCL; -- cgit v1.2.3