summaryrefslogtreecommitdiff
path: root/src/tmpfiles
diff options
context:
space:
mode:
authorjcg <jiangchuangang@huawei.com>2022-11-20 14:59:36 +0800
committerYu Watanabe <watanabe.yu+github@gmail.com>2022-11-26 07:35:56 +0900
commit1751bdde94f90391bb31a4a1a30fe74048b26753 (patch)
tree302f846fb121d33ec7bc5670689bb8c01f35e0bb /src/tmpfiles
parentda15f8406e9aeb7908e1d92c02d2ff5147c7788a (diff)
downloadsystemd-1751bdde94f90391bb31a4a1a30fe74048b26753.tar.gz
Fix typo
Diffstat (limited to 'src/tmpfiles')
-rw-r--r--src/tmpfiles/tmpfiles.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tmpfiles/tmpfiles.c b/src/tmpfiles/tmpfiles.c
index bf5192c56f..f156d90073 100644
--- a/src/tmpfiles/tmpfiles.c
+++ b/src/tmpfiles/tmpfiles.c
@@ -1979,7 +1979,7 @@ static int create_fifo(Item *i) {
creation = r >= 0 ? CREATION_NORMAL : CREATION_EXISTING;
- /* Open the inode via O_PATH, regardless if we managed to create it or not. Maybe it is is already the FIFO we want */
+ /* Open the inode via O_PATH, regardless if we managed to create it or not. Maybe it is already the FIFO we want */
fd = openat(pfd, bn, O_NOFOLLOW|O_CLOEXEC|O_PATH);
if (fd < 0) {
if (r < 0)