aboutsummaryrefslogtreecommitdiff
path: root/debianutils
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-04-08 15:08:42 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-04-08 15:08:42 +0000
commit8d9f495d68664017e0b87f2c0c2d0eae9f3c4836 (patch)
tree157087760d624a657c3ce11b142afb1c72bf225a /debianutils
parentb04b4357ff5a5b5194a7ff3c875d8746fac9ff33 (diff)
downloadbusybox-w32-8d9f495d68664017e0b87f2c0c2d0eae9f3c4836.tar.gz
busybox-w32-8d9f495d68664017e0b87f2c0c2d0eae9f3c4836.tar.bz2
busybox-w32-8d9f495d68664017e0b87f2c0c2d0eae9f3c4836.zip
getopt32: fix llist_t options ordering. llist_rev is not unused.
function old new delta tar_main 705 695 -10 sort_main 928 918 -10 decode_format_string 886 876 -10 run_parts_main 197 185 -12 ps_main 513 500 -13 wget_main 2764 2750 -14 awk_main 1014 1000 -14 od_main 2886 2866 -20 llist_rev 25 - -25 ------------------------------------------------------------------------------ (add/remove: 0/1 grow/shrink: 0/8 up/down: 0/-128) Total: -128 bytes
Diffstat (limited to 'debianutils')
-rw-r--r--debianutils/run_parts.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/debianutils/run_parts.c b/debianutils/run_parts.c
index 873263a22..eb2fb94b3 100644
--- a/debianutils/run_parts.c
+++ b/debianutils/run_parts.c
@@ -131,9 +131,6 @@ int run_parts_main(int argc, char **argv)
131 */ 131 */
132 umask(xstrtoul_range(umask_p, 8, 0, 07777)); 132 umask(xstrtoul_range(umask_p, 8, 0, 07777));
133 } 133 }
134//XXX: FIXME: reverse the list before handing it over to the user.
135//XXX: FIXME: The common case seems to be to use the order given by the user
136 arg_list = llist_rev(arg_list); /* XXX: getopt32 appends them */
137 for (tmp = 1; arg_list; arg_list = arg_list->link, tmp++) 134 for (tmp = 1; arg_list; arg_list = arg_list->link, tmp++)
138 G.cmd[tmp] = arg_list->data; 135 G.cmd[tmp] = arg_list->data;
139 /* G.cmd[tmp] = NULL; - G is already zeroed out */ 136 /* G.cmd[tmp] = NULL; - G is already zeroed out */