ask-password-api: drop unneeded parentheses

This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2020-03-02 15:54:43 +01:00
parent 86fca584c3
commit 2b43402c84
1 changed files with 1 additions and 2 deletions

View File

@ -715,10 +715,9 @@ static int create_socket(char **ret) {
return r;
sa_len = r;
RUN_WITH_UMASK(0177) {
RUN_WITH_UMASK(0177)
if (bind(fd, &sa.sa, sa_len) < 0)
return -errno;
}
r = setsockopt_int(fd, SOL_SOCKET, SO_PASSCRED, true);
if (r < 0)