mirror of
https://github.com/systemd/systemd-stable.git
synced 2024-10-30 23:21:08 +03:00
bus: when we are talking to a bus, SCM_CREDS/SCM_SECLABEL are not very useful
This commit is contained in:
parent
0a72c2bdef
commit
d65ddaa40e
@ -206,8 +206,8 @@ static int bus_socket_setup(sd_bus *b) {
|
||||
|
||||
assert(b);
|
||||
|
||||
/* Enable SO_PASSCRED + SO_PASSEC. We try this on any socket,
|
||||
* just in case. This is actually irrelavant for */
|
||||
/* Enable SO_PASSCRED + SO_PASSEC. We try this on any
|
||||
* socket, just in case. */
|
||||
one = 1;
|
||||
setsockopt(b->fd, SOL_SOCKET, SO_PASSCRED, &one, sizeof(one));
|
||||
setsockopt(b->fd, SOL_SOCKET, SO_PASSSEC, &one, sizeof(one));
|
||||
@ -467,8 +467,8 @@ static int bus_socket_make_message(sd_bus *bus, size_t size, sd_bus_message **m)
|
||||
|
||||
r = bus_message_from_malloc(bus->rbuffer, size,
|
||||
bus->fds, bus->n_fds,
|
||||
bus->ucred_valid ? &bus->ucred : NULL,
|
||||
bus->label[0] ? bus->label : NULL,
|
||||
!bus->bus_client && bus->ucred_valid ? &bus->ucred : NULL,
|
||||
!bus->bus_client && bus->label[0] ? bus->label : NULL,
|
||||
&t);
|
||||
if (r < 0) {
|
||||
free(b);
|
||||
|
Loading…
Reference in New Issue
Block a user