You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
966 B
26 lines
966 B
From 848b8dde6fe096b317abf0b4996f21c8fe6a39ce Mon Sep 17 00:00:00 2001 |
|
From: Yu Watanabe <watanabe.yu+github@gmail.com> |
|
Date: Wed, 2 Feb 2022 15:06:27 +0900 |
|
Subject: [PATCH] mkdir: CHASE_NONEXISTENT cannot used in |
|
chase_symlinks_and_stat() |
|
|
|
(cherry picked from commit e22916e61d1fdb7b46918b605ebf783d9017f9d8) |
|
|
|
Related: #2017035 |
|
--- |
|
src/basic/mkdir.c | 2 +- |
|
1 file changed, 1 insertion(+), 1 deletion(-) |
|
|
|
diff --git a/src/basic/mkdir.c b/src/basic/mkdir.c |
|
index 88782ab0d4..51a0d74e87 100644 |
|
--- a/src/basic/mkdir.c |
|
+++ b/src/basic/mkdir.c |
|
@@ -42,7 +42,7 @@ int mkdir_safe_internal( |
|
if ((flags & MKDIR_FOLLOW_SYMLINK) && S_ISLNK(st.st_mode)) { |
|
_cleanup_free_ char *p = NULL; |
|
|
|
- r = chase_symlinks_and_stat(path, NULL, CHASE_NONEXISTENT, &p, &st, NULL); |
|
+ r = chase_symlinks_and_stat(path, NULL, 0, &p, &st, NULL); |
|
if (r < 0) |
|
return r; |
|
if (r == 0)
|
|
|