mirror of
https://github.com/systemd/systemd-stable.git
synced 2025-01-25 06:03:40 +03:00
install: fix disable when /etc/systemd/system is a symlink (#4063)
This commit is contained in:
commit
83bf26ed02
@ -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;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user