diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-03-29 10:30:50 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-03-29 10:30:50 +0000 |
commit | 3e816c1252cc55e3763f946622129d31ea1f0f20 (patch) | |
tree | 5031fd816b1df09eaa897530a37ce814bba95011 /modutils | |
parent | 3d43edb28c80ee9cb54335f593d42d5d0471e15a (diff) | |
download | busybox-w32-3e816c1252cc55e3763f946622129d31ea1f0f20.tar.gz busybox-w32-3e816c1252cc55e3763f946622129d31ea1f0f20.tar.bz2 busybox-w32-3e816c1252cc55e3763f946622129d31ea1f0f20.zip |
- fold recurse, depthFirst and dereference params into one param flags.
Minor size improvement (-16b for size, -24b according to bloat-o-meter).
Diffstat (limited to 'modutils')
-rw-r--r-- | modutils/insmod.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modutils/insmod.c b/modutils/insmod.c index 57092f79a..075969dcb 100644 --- a/modutils/insmod.c +++ b/modutils/insmod.c | |||
@@ -4044,7 +4044,7 @@ int insmod_main( int argc, char **argv) | |||
4044 | module_dir = tmdn; | 4044 | module_dir = tmdn; |
4045 | else | 4045 | else |
4046 | module_dir = real_module_dir; | 4046 | module_dir = real_module_dir; |
4047 | recursive_action(module_dir, TRUE, FALSE, FALSE, | 4047 | recursive_action(module_dir, action_recurse, |
4048 | check_module_name_match, 0, m_fullName, 0); | 4048 | check_module_name_match, 0, m_fullName, 0); |
4049 | free(tmdn); | 4049 | free(tmdn); |
4050 | } | 4050 | } |
@@ -4059,7 +4059,7 @@ int insmod_main( int argc, char **argv) | |||
4059 | strcpy(module_dir, _PATH_MODULES); | 4059 | strcpy(module_dir, _PATH_MODULES); |
4060 | /* No module found under /lib/modules/`uname -r`, this | 4060 | /* No module found under /lib/modules/`uname -r`, this |
4061 | * time cast the net a bit wider. Search /lib/modules/ */ | 4061 | * time cast the net a bit wider. Search /lib/modules/ */ |
4062 | if (!recursive_action(module_dir, TRUE, FALSE, FALSE, | 4062 | if (!recursive_action(module_dir, action_recurse, |
4063 | check_module_name_match, 0, m_fullName, 0) | 4063 | check_module_name_match, 0, m_fullName, 0) |
4064 | ) { | 4064 | ) { |
4065 | if (m_filename == 0 | 4065 | if (m_filename == 0 |