27 lines
873 B
Diff
27 lines
873 B
Diff
From d0bfea1f4858672345d1b885bfb9ee1f6072c396 Mon Sep 17 00:00:00 2001
|
|
From: zhongtao <zhongtao17@huawei.com>
|
|
Date: Sun, 29 Sep 2024 17:22:42 +1400
|
|
Subject: [PATCH 147/149] bugfix for log in make_safedir_is_noexec
|
|
|
|
Signed-off-by: zhongtao <zhongtao17@huawei.com>
|
|
---
|
|
src/utils/tar/util_archive.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/utils/tar/util_archive.c b/src/utils/tar/util_archive.c
|
|
index 985e0f16..b946dd39 100644
|
|
--- a/src/utils/tar/util_archive.c
|
|
+++ b/src/utils/tar/util_archive.c
|
|
@@ -219,7 +219,7 @@ static int make_safedir_is_noexec(const char *flock_path, const char *dstdir, ch
|
|
}
|
|
|
|
if (realpath(isulad_tmpdir_env, cleanpath) == NULL) {
|
|
- ERROR("Failed to get real path for %s", isula_tmpdir);
|
|
+ SYSERROR("Failed to get real path for %s", isulad_tmpdir_env);
|
|
return -1;
|
|
}
|
|
|
|
--
|
|
2.25.1
|
|
|