projects
/
platform
/
upstream
/
systemd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4a13100
)
install: fix disable when /etc/systemd/system is a symlink
author
Lukas Nykryn
<lnykryn@redhat.com>
Tue, 30 Aug 2016 13:04:07 +0000
(15:04 +0200)
committer
Lukas Nykryn
<lnykryn@redhat.com>
Tue, 30 Aug 2016 13:11:46 +0000
(15:11 +0200)
src/shared/install.c
patch
|
blob
|
history
diff --git
a/src/shared/install.c
b/src/shared/install.c
index
6b82ad0
..
11770d8
100644
(file)
--- a/
src/shared/install.c
+++ b/
src/shared/install.c
@@
-643,7
+643,7
@@
static int remove_marked_symlinks(
if (set_size(remove_symlinks_to) <= 0)
return 0;
- fd = open(config_path, O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC
|O_NOFOLLOW
);
+ fd = open(config_path, O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC);
if (fd < 0)
return errno == ENOENT ? 0 : -errno;