diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2014-02-08 15:09:55 -0500 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2014-02-08 16:19:22 -0500 |
commit | 49888ca9ef9cac69bfc9b6e30e4f8e3376dcae03 (patch) | |
tree | 91352bfda127fb1488a5f8c71d732c62e4ff93d9 | |
parent | 66a5dbdf282435403f947c2caadd04bb0cdec752 (diff) |
manager: fix initialization of plymouth socket
I'm not sure why this makes a difference...
-rw-r--r-- | src/core/manager.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/manager.c b/src/core/manager.c index dbe08f930f..f7e5cbdcf3 100644 --- a/src/core/manager.c +++ b/src/core/manager.c @@ -1955,7 +1955,7 @@ void manager_send_unit_audit(Manager *m, Unit *u, int type, bool success) { void manager_send_unit_plymouth(Manager *m, Unit *u) { union sockaddr_union sa = { - .sa.sa_family = AF_UNIX, + .un.sun_family = AF_UNIX, .un.sun_path = "\0/org/freedesktop/plymouthd", }; |