mirror of
https://github.com/systemd/systemd.git
synced 2024-11-02 10:51:20 +03:00
socket: reuse existing FIFOs
This commit is contained in:
parent
49f91047af
commit
94bc27318a
@ -715,7 +715,7 @@ static int fifo_address_create(
|
||||
r = mkfifo(path, socket_mode);
|
||||
umask(old_mask);
|
||||
|
||||
if (r < 0) {
|
||||
if (r < 0 && errno != EEXIST) {
|
||||
r = -errno;
|
||||
goto fail;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user