summaryrefslogtreecommitdiff
path: root/src/test/test-path-lookup.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2016-04-06 20:48:58 +0200
committerLennart Poettering <lennart@poettering.net>2016-04-12 13:43:31 +0200
commit9183df707bde9e83d838e7b5a05db0c5f4b55e6d (patch)
tree50e29e20f1aaae9b8479c1e0728ed752470040cc /src/test/test-path-lookup.c
parent07a7864324e146662cb06f49fc3cd666788e2e2f (diff)
install: rename generator_paths() → generator_binary_paths()
This is too confusing, as this funciton returns the paths to the generator binaries, while usually when we refer to the just the "generator path" we mean the generated unit files. Let's clean this up.
Diffstat (limited to 'src/test/test-path-lookup.c')
-rw-r--r--src/test/test-path-lookup.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/test/test-path-lookup.c b/src/test/test-path-lookup.c
index 6ef0535ecb..ba60482867 100644
--- a/src/test/test-path-lookup.c
+++ b/src/test/test-path-lookup.c
@@ -51,13 +51,13 @@ static void test_paths(UnitFileScope scope) {
assert_se(rm_rf(template, REMOVE_ROOT|REMOVE_PHYSICAL) >= 0);
}
-static void print_generator_paths(UnitFileScope scope) {
+static void print_generator_binary_paths(UnitFileScope scope) {
_cleanup_strv_free_ char **paths;
char **dir;
log_info("Generators dirs (%s):", scope == UNIT_FILE_SYSTEM ? "system" : "user");
- paths = generator_paths(scope);
+ paths = generator_binary_paths(scope);
STRV_FOREACH(dir, paths)
log_info(" %s", *dir);
}
@@ -71,8 +71,8 @@ int main(int argc, char **argv) {
test_paths(UNIT_FILE_USER);
test_paths(UNIT_FILE_GLOBAL);
- print_generator_paths(UNIT_FILE_SYSTEM);
- print_generator_paths(UNIT_FILE_USER);
+ print_generator_binary_paths(UNIT_FILE_SYSTEM);
+ print_generator_binary_paths(UNIT_FILE_USER);
return EXIT_SUCCESS;
}