1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2025-01-21 18:03:41 +03:00

socket: properly label socket symlinks

This commit is contained in:
Lennart Poettering 2014-10-23 23:58:01 +02:00
parent 75514a707c
commit 43b133b4e0

View File

@ -1120,7 +1120,7 @@ static int socket_symlink(Socket *s) {
return 0;
STRV_FOREACH(i, s->symlinks)
symlink(p, *i);
symlink_label(p, *i);
return 0;
}