summaryrefslogtreecommitdiff
path: root/src/service.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2011-03-14 03:10:09 +0100
committerLennart Poettering <lennart@poettering.net>2011-03-14 03:12:25 +0100
commit91b22f21f3824c1766d34f622c5bbb70cbe881a8 (patch)
treedb29bcf8e6c77ea521fa2f8185339c50c606af35 /src/service.c
parent88213476187cafc86bea2276199891873000588d (diff)
core: move abstract namespace sockets to /dev/.run
Now that we have /dev/.run there's no need to use abstract namespace sockets. So, let's move things to /dev/.run, to make things more easily discoverable and improve compat with chroot() and fs namespacing.
Diffstat (limited to 'src/service.c')
-rw-r--r--src/service.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/service.c b/src/service.c
index 70999f3545..e7a9e7c586 100644
--- a/src/service.c
+++ b/src/service.c
@@ -1659,7 +1659,7 @@ static int service_spawn(
}
if (set_notify_socket)
- if (asprintf(our_env + n_env++, "NOTIFY_SOCKET=@%s", s->meta.manager->notify_socket) < 0) {
+ if (asprintf(our_env + n_env++, "NOTIFY_SOCKET=%s", s->meta.manager->notify_socket) < 0) {
r = -ENOMEM;
goto fail;
}