*: merge some common strings

text   data    bss    dec    hexfilename
 838650   8009      0 846659  ceb43busybox_old
 838519   8009      0 846528  ceac0busybox_unstripped

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko
2010-03-23 16:25:17 +01:00
parent 37a658c4c8
commit 651a2697f7
22 changed files with 29 additions and 29 deletions

View File

@ -298,7 +298,7 @@ static int do_modprobe(struct module_entry *m)
rc = bb_delete_module(m2->modname, O_EXCL);
if (rc) {
if (first) {
bb_error_msg("failed to unload module %s: %s",
bb_error_msg("can't unload module %s: %s",
humanly_readable_name(m2),
moderror(rc));
break;
@ -328,7 +328,7 @@ static int do_modprobe(struct module_entry *m)
rc = 0;
free(options);
if (rc) {
bb_error_msg("failed to load module %s (%s): %s",
bb_error_msg("can't load module %s (%s): %s",
humanly_readable_name(m2),
fn,
moderror(rc)