Mirror of git://git.busybox.net/busybox with our patches on top
Source
816
816
head = tail = &rm_a_dummy;
817
817
818
818
if ( head && tail )
819
819
rc = mod_process ( head, 0 ); // process head ---> tail
820
820
else
821
821
rc = 1;
822
822
return rc;
823
823
824
824
}
825
825
826
-
extern int modprobe_main(int argc, char** argv)
826
+
int modprobe_main(int argc, char** argv)
827
827
{
828
828
int rc = EXIT_SUCCESS;
829
829
char *unused;
830
830
831
831
bb_opt_complementally = "?V-:q-v:v-q";
832
832
main_opts = bb_getopt_ulflags(argc, argv, "acdklnqrst:vVC:",
833
833
&unused, &unused);
834
834
if((main_opts & (DUMP_CONF_EXIT | LIST_ALL)))
835
835
return EXIT_SUCCESS;
836
836
if((main_opts & (RESTRICT_DIR | CONFIG_FILE)))