diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2020-12-29 16:55:59 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2020-12-29 17:02:06 +0100 |
commit | fecb1693ccef88710fbb2de86d0f92bc2c76153f (patch) | |
tree | 08afc0daad6bc625baa71ee2f87dd22b20a2b791 /modutils | |
parent | 40f9fe21600a834fdcf1f26e9374fd21cd3be5fb (diff) |
modprobe-small: convert to new recursive_action() API
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'modutils')
-rw-r--r-- | modutils/modprobe-small.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modutils/modprobe-small.c b/modutils/modprobe-small.c index 18cfac481..db44a2ed0 100644 --- a/modutils/modprobe-small.c +++ b/modutils/modprobe-small.c @@ -377,11 +377,11 @@ static int parse_module(module_info *info, const char *pathname) return info->open_read_failed; } -static FAST_FUNC int fileAction(const char *pathname, - struct stat *sb UNUSED_PARAM, - void *modname_to_match, - int depth UNUSED_PARAM) +static FAST_FUNC int fileAction(struct recursive_state *state, + const char *pathname, + struct stat *sb UNUSED_PARAM) { + const char *modname_to_match = state->userData; int cur; const char *fname; bool is_remove = (ENABLE_RMMOD && ONLY_APPLET) |