diff options
author | Bernhard Reutner-Fischer | 2007-03-29 10:30:50 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer | 2007-03-29 10:30:50 +0000 |
commit | 3e816c1252cc55e3763f946622129d31ea1f0f20 (patch) | |
tree | 5031fd816b1df09eaa897530a37ce814bba95011 /modutils | |
parent | 3d43edb28c80ee9cb54335f593d42d5d0471e15a (diff) | |
download | busybox-3e816c1252cc55e3763f946622129d31ea1f0f20.zip busybox-3e816c1252cc55e3763f946622129d31ea1f0f20.tar.gz |
- 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 57092f7..075969d 100644 --- a/modutils/insmod.c +++ b/modutils/insmod.c @@ -4044,7 +4044,7 @@ int insmod_main( int argc, char **argv) module_dir = tmdn; else module_dir = real_module_dir; - recursive_action(module_dir, TRUE, FALSE, FALSE, + recursive_action(module_dir, action_recurse, check_module_name_match, 0, m_fullName, 0); free(tmdn); } @@ -4059,7 +4059,7 @@ int insmod_main( int argc, char **argv) strcpy(module_dir, _PATH_MODULES); /* No module found under /lib/modules/`uname -r`, this * time cast the net a bit wider. Search /lib/modules/ */ - if (!recursive_action(module_dir, TRUE, FALSE, FALSE, + if (!recursive_action(module_dir, action_recurse, check_module_name_match, 0, m_fullName, 0) ) { if (m_filename == 0 |