X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fshared%2Fpath-lookup.c;h=7d53d859b6b33c91b04bc434e857bf088a65cb23;hb=28622e8f5b28412d97bf2f3a5df49c419be1e2c5;hp=e0aaf4431fbd8f53789760085e5643c4f568d5db;hpb=7d8da2c9641c584ff977493eeb8148300dce8759;p=elogind.git diff --git a/src/shared/path-lookup.c b/src/shared/path-lookup.c index e0aaf4431..7d53d859b 100644 --- a/src/shared/path-lookup.c +++ b/src/shared/path-lookup.c @@ -125,26 +125,8 @@ static char** user_dirs( goto fail; } else if (home) { - _cleanup_free_ char *data_home_parent = NULL; - if (asprintf(&data_home, "%s/.local/share/systemd/user", home) < 0) goto fail; - - /* There is really no need for two unit dirs in $HOME, - * except to be fully compliant with the XDG spec. We - * now try to link the two dirs, so that we can - * minimize disk seeks a little. Further down we'll - * then filter out this link, if it is actually is - * one. */ - - if (path_get_parent(data_home, &data_home_parent) >= 0) { - _cleanup_free_ char *config_home_relative = NULL; - - if (path_make_relative(data_home_parent, config_home, &config_home_relative) >= 0) { - mkdir_parents_label(data_home, 0777); - (void) symlink(config_home_relative, data_home); - } - } } e = getenv("XDG_DATA_DIRS");