From: Mike Yuan Date: Sun, 9 Feb 2025 14:38:40 +0000 (+0100) Subject: tmpfiles: use prefix_roota() where appropriate X-Git-Tag: v258-rc1~1372^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7b66a950db5b6cb245ff5340eea2285ec6245b49;p=thirdparty%2Fsystemd.git tmpfiles: use prefix_roota() where appropriate --- diff --git a/src/tmpfiles/tmpfiles.c b/src/tmpfiles/tmpfiles.c index a7d54bb1ff6..139271623e6 100644 --- a/src/tmpfiles/tmpfiles.c +++ b/src/tmpfiles/tmpfiles.c @@ -2408,14 +2408,14 @@ static int create_symlink(Context *c, Item *i) { assert(i); if (i->ignore_if_target_missing) { - r = chase(i->argument, arg_root, CHASE_SAFE|CHASE_PREFIX_ROOT|CHASE_NOFOLLOW, /*ret_path=*/ NULL, /*ret_fd=*/ NULL); + r = chase(i->argument, arg_root, CHASE_SAFE|CHASE_PREFIX_ROOT|CHASE_NOFOLLOW, /* ret_path = */ NULL, /* ret_fd = */ NULL); if (r == -ENOENT) { /* Silently skip over lines where the source file is missing. */ - log_info("Symlink source path '%s%s' does not exist, skipping line.", strempty(arg_root), i->argument); + log_info("Symlink source path '%s' does not exist, skipping line.", prefix_roota(arg_root, i->argument)); return 0; } if (r < 0) - return log_error_errno(r, "Failed to check if symlink source path '%s%s' exists: %m", strempty(arg_root), i->argument); + return log_error_errno(r, "Failed to check if symlink source path '%s' exists: %m", prefix_roota(arg_root, i->argument)); } r = path_extract_filename(i->path, &bn);