aboutsummaryrefslogtreecommitdiff
path: root/modutils/modprobe.c
diff options
context:
space:
mode:
Diffstat (limited to 'modutils/modprobe.c')
-rw-r--r--modutils/modprobe.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/modutils/modprobe.c b/modutils/modprobe.c
index 314a7a1cb..952ba0377 100644
--- a/modutils/modprobe.c
+++ b/modutils/modprobe.c
@@ -461,9 +461,8 @@ static int do_modprobe(struct module_entry *m)
461 rc = bb_delete_module(m2->modname, O_EXCL); 461 rc = bb_delete_module(m2->modname, O_EXCL);
462 if (rc) { 462 if (rc) {
463 if (first) { 463 if (first) {
464 bb_error_msg("can't unload module %s: %s", 464 bb_perror_msg("can't unload module %s",
465 humanly_readable_name(m2), 465 humanly_readable_name(m2));
466 moderror(rc));
467 break; 466 break;
468 } 467 }
469 } else { 468 } else {
@@ -622,7 +621,7 @@ int modprobe_main(int argc UNUSED_PARAM, char **argv)
622 * autoclean will be removed". 621 * autoclean will be removed".
623 */ 622 */
624 if (bb_delete_module(NULL, O_NONBLOCK | O_EXCL) != 0) 623 if (bb_delete_module(NULL, O_NONBLOCK | O_EXCL) != 0)
625 bb_perror_msg_and_die("rmmod"); 624 bb_perror_nomsg_and_die();
626 } 625 }
627 return EXIT_SUCCESS; 626 return EXIT_SUCCESS;
628 } 627 }