]> Kevux Git Server - kevux-tools/commit
Progress: Continue working on completing the remove program.
authorKevin Day <Kevin@kevux.org>
Sat, 22 Mar 2025 16:41:33 +0000 (11:41 -0500)
committerKevin Day <Kevin@kevux.org>
Sat, 22 Mar 2025 16:41:33 +0000 (11:41 -0500)
commitb0881790e5bd2b59610df0578658e693f160a211
tree2c46cf8997513d626b3f61a5b3006335c927123a
parent2318b9a5c843226a57fb7816692299926e468cfd
Progress: Continue working on completing the remove program.

The existing program unit tests revealed that the date pre-processing is:
1. Happening even when none of the date flags (access, changed, and updated) are set.
2. Is incorrectly returning `F_yes` due to the initial `F_okay` assignment to `status`.

Add `accessed_changed_updated` helper flag and use that flag to ensure the `kt_remove_preprocess_file_dates()` only gets called when needed.

Initialize the `status` value to `F_false` in the `kt_remove_preprocess_file_dates()`.

The newly added pint functions is resulting in an extra call to `geteuid()`.
Add a second wrap call to address this.
I may want to use a variable in the future to prevent multiple calls to this function.
sources/c/program/kevux/tools/remove/main/common/define.h
sources/c/program/kevux/tools/remove/main/preprocess.c
tests/unit/remove/c/test-remove-user.c