diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2023-11-23 21:20:07 +0100 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2023-11-23 21:20:13 +0100 |
commit | ff7af46edb51c6548876e139c89389a388694051 (patch) | |
tree | 07a2fcac89d628760351bdc0ada0b80d52fdfde5 /src/analyze/analyze-verify-util.h | |
parent | analyze: shorten code a bit (diff) | |
download | systemd-ff7af46edb51c6548876e139c89389a388694051.tar.xz systemd-ff7af46edb51c6548876e139c89389a388694051.zip |
analyze: set SYSTEMD_UNIT_PATH in verify_generate_path()
Then, rename verify_generate_path() -> verify_set_unit_path().
Diffstat (limited to '')
-rw-r--r-- | src/analyze/analyze-verify-util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/analyze/analyze-verify-util.h b/src/analyze/analyze-verify-util.h index 2e3b0604c3..0834c59c57 100644 --- a/src/analyze/analyze-verify-util.h +++ b/src/analyze/analyze-verify-util.h @@ -14,7 +14,7 @@ typedef enum RecursiveErrors { _RECURSIVE_ERRORS_INVALID = -EINVAL, } RecursiveErrors; -int verify_generate_path(char **var, char **filenames); +int verify_set_unit_path(char **filenames); int verify_prepare_filename(const char *filename, char **ret); int verify_executable(Unit *u, const ExecCommand *exec, const char *root); int verify_units(char **filenames, RuntimeScope scope, bool check_man, bool run_generators, RecursiveErrors recursive_errors, const char *root); |