aboutsummaryrefslogtreecommitdiff
path: root/modutils/modprobe.c
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-06-03 19:35:15 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-06-03 19:35:15 +0000
commitdeda6a5c0d00d02813cfda0d6262a24462909e9f (patch)
treecd2151ee74f7350abcbe692f8115e91547e08e15 /modutils/modprobe.c
parent2c351a8f9875a4b597641bc4c0da76db485fe184 (diff)
downloadbusybox-deda6a5c0d00d02813cfda0d6262a24462909e9f.tar.gz
- move #include busybox.h to the very top so we pull in the config
and eventual platform specific includes in early. - remove two supposedly superfluous newlines from ...error_msg() in modprobe and use shorter boilerplate while at it.
Diffstat (limited to 'modutils/modprobe.c')
-rw-r--r--modutils/modprobe.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/modutils/modprobe.c b/modutils/modprobe.c
index 44460391a..93e510293 100644
--- a/modutils/modprobe.c
+++ b/modutils/modprobe.c
@@ -11,6 +11,7 @@
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
*/
+#include "busybox.h"
#include <sys/utsname.h>
#include <sys/types.h>
#include <sys/wait.h>
@@ -22,7 +23,6 @@
#include <ctype.h>
#include <fcntl.h>
#include <fnmatch.h>
-#include "busybox.h"
struct mod_opt_t { /* one-way list of options to pass to a module */
char * m_opt_val;
@@ -880,7 +880,7 @@ int modprobe_main(int argc, char** argv)
depend = build_dep ( );
if ( !depend )
- bb_error_msg_and_die ( "could not parse modules.dep\n" );
+ bb_error_msg_and_die ( "could not parse modules.dep" );
if (remove_opt) {
do {
@@ -893,7 +893,7 @@ int modprobe_main(int argc, char** argv)
} while ( ++optind < argc );
} else {
if (optind >= argc)
- bb_error_msg_and_die ( "No module or pattern provided\n" );
+ bb_error_msg_and_die ( "No module or pattern provided" );
if ( mod_insert ( argv [optind], argc - optind - 1, argv + optind + 1 ))
bb_error_msg_and_die ( "failed to load module %s", argv [optind] );