diff options
author | Lennart Poettering <lennart@poettering.net> | 2015-02-13 15:33:42 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-02-13 15:49:51 +0100 |
commit | 1140e154100f7224fb8bab55ba7fc087409f9d76 (patch) | |
tree | 136c394d5436c640d9a5b6012e70511e2ae21b5d /src | |
parent | d27efd93841a2ac2127fd53321368cc3f975c564 (diff) |
bus-proxy: tell Coverity we don't care about these return values
Diffstat (limited to 'src')
-rw-r--r-- | src/bus-proxyd/proxy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bus-proxyd/proxy.c b/src/bus-proxyd/proxy.c index 0b8c448757..fb2409233c 100644 --- a/src/bus-proxyd/proxy.c +++ b/src/bus-proxyd/proxy.c @@ -431,7 +431,7 @@ static int process_policy_unlocked(sd_bus *from, sd_bus *to, sd_bus_message *m, return 0; /* The message came from the kernel, and is sent to our legacy client. */ - sd_bus_creds_get_well_known_names(&m->creds, &sender_names); + (void) sd_bus_creds_get_well_known_names(&m->creds, &sender_names); (void) sd_bus_creds_get_euid(&m->creds, &sender_uid); (void) sd_bus_creds_get_egid(&m->creds, &sender_gid); @@ -492,7 +492,7 @@ static int process_policy_unlocked(sd_bus *from, sd_bus *to, sd_bus_message *m, if (r < 0) return handle_policy_error(m, r); - sd_bus_creds_get_well_known_names(destination_creds, &destination_names); + (void) sd_bus_creds_get_well_known_names(destination_creds, &destination_names); (void) sd_bus_creds_get_euid(destination_creds, &destination_uid); (void) sd_bus_creds_get_egid(destination_creds, &destination_gid); |