if (recurse->flag & f_directory_recurse_do_flag_top_before_e) {
recurse->state.status = F_okay;
- recurse->action(recurse, path, f_directory_recurse_do_flag_top_before_e);
+ recurse->action(recurse, path, f_directory_recurse_do_flag_top_before_e | f_directory_recurse_do_flag_directory_e);
if (F_status_is_error(recurse->state.status)) {
- private_inline_fl_directory_do_handle(recurse, path, f_directory_recurse_do_flag_top_before_e);
+ private_inline_fl_directory_do_handle(recurse, path, f_directory_recurse_do_flag_top_before_e | f_directory_recurse_do_flag_directory_e);
if (F_status_is_error(recurse->state.status)) return;
}
}
if (recurse->flag & f_directory_recurse_do_flag_list_e) {
- recurse->action(recurse, path, f_directory_recurse_do_flag_list_e);
+ recurse->action(recurse, path, f_directory_recurse_do_flag_directory_e | f_directory_recurse_do_flag_list_e);
if (F_status_is_error(recurse->state.status)) {
- private_inline_fl_directory_do_handle(recurse, path, f_directory_recurse_do_flag_list_e);
+ private_inline_fl_directory_do_handle(recurse, path, f_directory_recurse_do_flag_directory_e | f_directory_recurse_do_flag_list_e);
if (F_status_is_error(recurse->state.status)) return;
}
if (recurse->flag & f_directory_recurse_do_flag_top_after_e) {
recurse->state.status = F_okay;
- recurse->action(recurse, path, f_directory_recurse_do_flag_action_e | f_directory_recurse_do_flag_top_after_e);
+ recurse->action(recurse, path, f_directory_recurse_do_flag_action_e | f_directory_recurse_do_flag_directory_e | f_directory_recurse_do_flag_top_after_e);
if (F_status_is_error(recurse->state.status)) {
- private_inline_fl_directory_do_handle(recurse, path, f_directory_recurse_do_flag_action_e | f_directory_recurse_do_flag_top_after_e);
+ private_inline_fl_directory_do_handle(recurse, path, f_directory_recurse_do_flag_action_e | f_directory_recurse_do_flag_directory_e | f_directory_recurse_do_flag_top_after_e);
if (F_status_is_error(recurse->state.status)) return;
}
}