mirror of
https://github.com/systemd/systemd.git
synced 2024-11-06 16:59:03 +03:00
busctl: when monitoring the bus, enable all credentials
This commit is contained in:
parent
6af00e06e4
commit
d0ce77344b
@ -507,6 +507,24 @@ int main(int argc, char *argv[]) {
|
||||
log_error("Failed to set monitor mode: %s", strerror(-r));
|
||||
goto finish;
|
||||
}
|
||||
|
||||
r = sd_bus_negotiate_creds(bus, _SD_BUS_CREDS_ALL);
|
||||
if (r < 0) {
|
||||
log_error("Failed to enable credentials: %s", strerror(-r));
|
||||
goto finish;
|
||||
}
|
||||
|
||||
r = sd_bus_negotiate_timestamp(bus, true);
|
||||
if (r < 0) {
|
||||
log_error("Failed to enable timestamps: %s", strerror(-r));
|
||||
goto finish;
|
||||
}
|
||||
|
||||
r = sd_bus_negotiate_fds(bus, true);
|
||||
if (r < 0) {
|
||||
log_error("Failed to enable fds: %s", strerror(-r));
|
||||
goto finish;
|
||||
}
|
||||
}
|
||||
|
||||
if (arg_address)
|
||||
|
Loading…
Reference in New Issue
Block a user