aboutsummaryrefslogtreecommitdiff
path: root/modutils/modutils-24.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2009-04-13 02:25:40 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2009-04-13 02:25:40 +0000
commit1f63229a8e5384bcc2ea99c9063383d3960fe275 (patch)
tree03fc1ff64127a30c9acc001c95f158583438a0b9 /modutils/modutils-24.c
parent1fb26da0717312dbee703b5204876facd99262a9 (diff)
downloadbusybox-w32-1f63229a8e5384bcc2ea99c9063383d3960fe275.tar.gz
busybox-w32-1f63229a8e5384bcc2ea99c9063383d3960fe275.tar.bz2
busybox-w32-1f63229a8e5384bcc2ea99c9063383d3960fe275.zip
rmmod: fix bug 263
"modutils/rmmod can't remove modules with dash in name on 2.4 kernels" function old new delta rmmod_main 187 220 +33
Diffstat (limited to 'modutils/modutils-24.c')
-rw-r--r--modutils/modutils-24.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modutils/modutils-24.c b/modutils/modutils-24.c
index 4b0e78687..a16cb1bbe 100644
--- a/modutils/modutils-24.c
+++ b/modutils/modutils-24.c
@@ -3803,7 +3803,7 @@ int FAST_FUNC bb_init_module_24(const char *m_filename, const char *options)
3803 if (m_has_modinfo) { 3803 if (m_has_modinfo) {
3804 int m_version = new_get_module_version(f, m_strversion); 3804 int m_version = new_get_module_version(f, m_strversion);
3805 if (m_version == -1) { 3805 if (m_version == -1) {
3806 bb_error_msg_and_die("cannot find the kernel version " 3806 bb_error_msg_and_die("can't find the kernel version "
3807 "the module was compiled for"); 3807 "the module was compiled for");
3808 } 3808 }
3809 } 3809 }