diff options
author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-10-20 13:28:22 +0000 |
---|---|---|
committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-10-20 13:28:22 +0000 |
commit | 404aa1479965df0d5d019a6a14f62fa696419e4c (patch) | |
tree | c6f3435738900c8d53832eb919b1b2c3d524f2e5 /modutils/modprobe.c | |
parent | 753fc33dda8a58173631650d3218e6f7b51ea58d (diff) | |
download | busybox-w32-404aa1479965df0d5d019a6a14f62fa696419e4c.tar.gz busybox-w32-404aa1479965df0d5d019a6a14f62fa696419e4c.tar.bz2 busybox-w32-404aa1479965df0d5d019a6a14f62fa696419e4c.zip |
message string changes, mostly for consistency, also -32 bytes in .rodata
git-svn-id: svn://busybox.net/trunk/busybox@16412 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'modutils/modprobe.c')
-rw-r--r-- | modutils/modprobe.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modutils/modprobe.c b/modutils/modprobe.c index ab595c847..ba24791f9 100644 --- a/modutils/modprobe.c +++ b/modutils/modprobe.c | |||
@@ -758,7 +758,7 @@ static void check_dep ( char *mod, struct mod_list_t **head, struct mod_list_t * | |||
758 | } | 758 | } |
759 | } | 759 | } |
760 | else { | 760 | else { |
761 | bb_error_msg ("Bad alias %s", dt-> m_name); | 761 | bb_error_msg ("bad alias %s", dt-> m_name); |
762 | return; | 762 | return; |
763 | } | 763 | } |
764 | } | 764 | } |
@@ -897,7 +897,7 @@ int modprobe_main(int argc, char** argv) | |||
897 | } while ( ++optind < argc ); | 897 | } while ( ++optind < argc ); |
898 | } else { | 898 | } else { |
899 | if (optind >= argc) | 899 | if (optind >= argc) |
900 | bb_error_msg_and_die ( "No module or pattern provided" ); | 900 | bb_error_msg_and_die ( "no module or pattern provided" ); |
901 | 901 | ||
902 | if ( mod_insert ( argv [optind], argc - optind - 1, argv + optind + 1 )) | 902 | if ( mod_insert ( argv [optind], argc - optind - 1, argv + optind + 1 )) |
903 | bb_error_msg_and_die ( "failed to load module %s", argv [optind] ); | 903 | bb_error_msg_and_die ( "failed to load module %s", argv [optind] ); |