diff options
author | Robert Griebl <griebl@gmx.de> | 2002-12-03 22:41:36 +0000 |
---|---|---|
committer | Robert Griebl <griebl@gmx.de> | 2002-12-03 22:41:36 +0000 |
commit | 3ba7ceebfc8035fa618c99b27f6995a5bc6997ac (patch) | |
tree | ecde0019366e88ddd3b465e4bf66278f33bdd650 /modutils | |
parent | 7127b58baa864f93e32bc8a800ebc9b7e9706aac (diff) | |
download | busybox-3ba7ceebfc8035fa618c99b27f6995a5bc6997ac.tar.gz |
print an error message if we can't load a module
Diffstat (limited to 'modutils')
-rw-r--r-- | modutils/modprobe.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/modutils/modprobe.c b/modutils/modprobe.c index 6a714da77..99650ff03 100644 --- a/modutils/modprobe.c +++ b/modutils/modprobe.c @@ -540,8 +540,10 @@ extern int modprobe_main(int argc, char** argv) if (optind >= argc) error_msg_and_die ( "No module or pattern provided\n" ); - return mod_insert ( xstrdup ( argv [optind] ), argc - optind - 1, argv + optind + 1 ) ? \ - EXIT_FAILURE : EXIT_SUCCESS; + if ( mod_insert ( xstrdup ( argv [optind] ), argc - optind - 1, argv + optind + 1 )) + error_msg_and_die ( "failed to load module %s", argv [optind] ); + + return EXIT_SUCCESS; } |