summaryrefslogtreecommitdiff
path: root/src/environment-d-generator
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2020-03-23 19:50:59 +0100
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2020-03-27 20:12:44 +0100
commit51327bcc7457abb05cc80a5744fc233778a08ff8 (patch)
tree9484b2a5e460e4887a15509e62b19634dca07666 /src/environment-d-generator
parentd32014a5bba837a288286e0f06e1927786d06d82 (diff)
downloadsystemd-51327bcc7457abb05cc80a5744fc233778a08ff8.tar.gz
sd-path: rename the two functions
I think the two names were both pretty bad. They did not give a proper hint what the difference between the two functions is, and sd_path_home sounds like it is somehow related to /home or home directories or whatever, when in fact both functions return the same set of paths as either a colon-delimited string or a strv. "_strv" suffix is used by various functions in sd-bus, so let's reuse that. Those functions are not public yet, so let's rename.
Diffstat (limited to 'src/environment-d-generator')
-rw-r--r--src/environment-d-generator/environment-d-generator.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/environment-d-generator/environment-d-generator.c b/src/environment-d-generator/environment-d-generator.c
index 5fe51359f6..4a14c23f11 100644
--- a/src/environment-d-generator/environment-d-generator.c
+++ b/src/environment-d-generator/environment-d-generator.c
@@ -20,7 +20,7 @@ static int environment_dirs(char ***ret) {
return -ENOMEM;
/* ~/.config/systemd/environment.d */
- r = sd_path_home(SD_PATH_USER_CONFIGURATION, "environment.d", &c);
+ r = sd_path_lookup(SD_PATH_USER_CONFIGURATION, "environment.d", &c);
if (r < 0)
return r;