mirror of
https://github.com/AuxXxilium/eudev.git
synced 2024-12-21 06:03:39 +07:00
main: remove AF_UNIX sockets before binding
This commit is contained in:
parent
f41de95966
commit
6f79c579ec
@ -955,6 +955,7 @@ static int bus_init_private(Manager *m) {
|
||||
if (getpid() != 1)
|
||||
return 0;
|
||||
|
||||
unlink("/dev/.run/systemd/private");
|
||||
if (!(m->private_bus = dbus_server_listen("unix:path=/dev/.run/systemd/private", &error))) {
|
||||
log_error("Failed to create private D-Bus server: %s", error.message);
|
||||
r = -EIO;
|
||||
|
@ -90,8 +90,10 @@ static int manager_setup_notify(Manager *m) {
|
||||
|
||||
if (getpid() != 1)
|
||||
snprintf(sa.un.sun_path, sizeof(sa.un.sun_path), NOTIFY_SOCKET_USER "/%llu", random_ull());
|
||||
else
|
||||
else {
|
||||
unlink(NOTIFY_SOCKET_SYSTEM);
|
||||
strncpy(sa.un.sun_path, NOTIFY_SOCKET_SYSTEM, sizeof(sa.un.sun_path));
|
||||
}
|
||||
|
||||
if (sa.un.sun_path[0] == '@')
|
||||
sa.un.sun_path[0] = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user