1
0
mirror of https://github.com/systemd/systemd.git synced 2024-11-02 19:21:53 +03:00

socket: reuse existing FIFOs

This commit is contained in:
Lennart Poettering 2011-04-16 03:42:37 +02:00
parent 49f91047af
commit 94bc27318a

View File

@ -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;
}