From e28190673ca83d62692dae6d791161bece820030 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Wed, 21 Apr 2021 23:22:26 +0200 Subject: [PATCH] repart: don't use basename() when we called path_extract_filename() anyway already We already have the string, use it. --- src/partition/repart.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/partition/repart.c b/src/partition/repart.c index 9e297f19b9a..7809641fc88 100644 --- a/src/partition/repart.c +++ b/src/partition/repart.c @@ -2858,7 +2858,7 @@ static int do_copy_files(Partition *p, const char *fs) { if (pfd < 0) return log_error_errno(pfd, "Failed to open parent directory of target: %m"); - tfd = openat(pfd, basename(*target), O_CREAT|O_EXCL|O_WRONLY|O_CLOEXEC, 0700); + tfd = openat(pfd, fn, O_CREAT|O_EXCL|O_WRONLY|O_CLOEXEC, 0700); if (tfd < 0) return log_error_errno(errno, "Failed to create target file '%s': %m", *target); -- 2.47.3