From 02fec4701cee79f875c1d02b8b4aee09380dbcb8 Mon Sep 17 00:00:00 2001 From: Guillaume Cottenceau Date: Thu, 4 Jan 2001 20:04:45 +0000 Subject: integrate dietlibc/stdio per default for cdrom and disk only installs --- mdk-stage1/insmod-busybox/insmod.c | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) (limited to 'mdk-stage1/insmod-busybox/insmod.c') diff --git a/mdk-stage1/insmod-busybox/insmod.c b/mdk-stage1/insmod-busybox/insmod.c index ac5f191fb..86c9ad181 100644 --- a/mdk-stage1/insmod-busybox/insmod.c +++ b/mdk-stage1/insmod-busybox/insmod.c @@ -45,7 +45,6 @@ #include #include #include -#include #include //---------------------------------------------------------------------------- @@ -2926,13 +2925,11 @@ extern int insmod_main( int argc, char **argv) } obj_allocate_commons(f); - if (optind < argc) { - if (m_has_modinfo - ? !new_process_module_arguments(f, argc - optind, argv + optind) - : !old_process_module_arguments(f, argc - optind, argv + optind)) - { - goto out; - } + if (m_has_modinfo + ? !new_process_module_arguments(f, argc-1, argv+1) + : !old_process_module_arguments(f, argc-1, argv+1)) + { + goto out; } arch_create_got(f); -- cgit v1.2.1