]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
bus-proxy: it's OK if getpeercred doesn't work
authorLennart Poettering <lennart@poettering.net>
Fri, 24 Oct 2014 17:29:01 +0000 (19:29 +0200)
committerLennart Poettering <lennart@poettering.net>
Fri, 24 Oct 2014 17:29:59 +0000 (19:29 +0200)
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

src/bus-proxyd/bus-proxyd.c

index 11d0e289cfcc9843a90dcd59597d9066a4a930f9..8c1b6a5ad6281bfce44e27a271f332c529c6789f 100644 (file)
@@ -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);
         }