[systemd-commits] src/bus-proxyd

Lennart Poettering lennart at kemper.freedesktop.org
Fri Oct 24 10:30:21 PDT 2014


 src/bus-proxyd/bus-proxyd.c |    7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)

New commits:
commit 96343c3039020d55ee64fb4746abee483e05fc29
Author: Lennart Poettering <lennart at poettering.net>
Date:   Fri Oct 24 19:29:01 2014 +0200

    bus-proxy: it's OK if getpeercred doesn't work
    
    We should use the data if we can (if stdin/stdout is an AF_UNIX socket),
    but still work if we can't (if stdin/stdout are pipes, like in the SSH
    case).
    
    This effectively reverts 55534fb5e4742b0db9ae5e1e0202c53804147697

diff --git a/src/bus-proxyd/bus-proxyd.c b/src/bus-proxyd/bus-proxyd.c
index 11d0e28..8c1b6a5 100644
--- a/src/bus-proxyd/bus-proxyd.c
+++ b/src/bus-proxyd/bus-proxyd.c
@@ -1166,12 +1166,7 @@ int main(int argc, char *argv[]) {
                 sd_is_socket(out_fd, AF_UNIX, 0, 0) > 0;
 
         if (is_unix) {
-                r = getpeercred(in_fd, &ucred);
-                if (r < 0) {
-                        log_error("Failed to get peer creds: %s", strerror(-r));
-                        goto finish;
-                }
-
+                (void) getpeercred(in_fd, &ucred);
                 (void) getpeersec(in_fd, &peersec);
         }
 



More information about the systemd-commits mailing list