diff options
Diffstat (limited to 'modutils/modprobe-small.c')
-rw-r--r-- | modutils/modprobe-small.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modutils/modprobe-small.c b/modutils/modprobe-small.c index 6eb950f..3fd7bf5 100644 --- a/modutils/modprobe-small.c +++ b/modutils/modprobe-small.c @@ -679,7 +679,7 @@ int modprobe_main(int argc UNUSED_PARAM, char **argv) { struct utsname uts; char applet0 = applet_name[0]; - USE_FEATURE_MODPROBE_SMALL_OPTIONS_ON_CMDLINE(char *options;) + IF_FEATURE_MODPROBE_SMALL_OPTIONS_ON_CMDLINE(char *options;) /* are we lsmod? -> just dump /proc/modules */ if ('l' == applet0) { @@ -773,8 +773,8 @@ int modprobe_main(int argc UNUSED_PARAM, char **argv) len = MAXINT(ssize_t); map = xmalloc_xopen_read_close(*argv, &len); if (init_module(map, len, - USE_FEATURE_MODPROBE_SMALL_OPTIONS_ON_CMDLINE(options ? options : "") - SKIP_FEATURE_MODPROBE_SMALL_OPTIONS_ON_CMDLINE("") + IF_FEATURE_MODPROBE_SMALL_OPTIONS_ON_CMDLINE(options ? options : "") + IF_NOT_FEATURE_MODPROBE_SMALL_OPTIONS_ON_CMDLINE("") ) != 0) bb_error_msg_and_die("can't insert '%s': %s", *argv, moderror(errno)); @@ -791,7 +791,7 @@ int modprobe_main(int argc UNUSED_PARAM, char **argv) } while (*argv); if (ENABLE_FEATURE_CLEAN_UP) { - USE_FEATURE_MODPROBE_SMALL_OPTIONS_ON_CMDLINE(free(options);) + IF_FEATURE_MODPROBE_SMALL_OPTIONS_ON_CMDLINE(free(options);) } return EXIT_SUCCESS; } |