Don't use the umask to chmod local domain server sockets, use
the mask
This commit is contained in:
parent
318b02fdb9
commit
3356db52df
@ -186,7 +186,7 @@ server_LocalOpen(struct bundle *bundle, const char *name, mode_t mask)
|
||||
int s;
|
||||
|
||||
if (server.rm && !strcmp(server.rm, name)) {
|
||||
if (chmod(server.rm, mask))
|
||||
if (chmod(server.rm, 0777 & ~mask))
|
||||
log_Printf(LogERROR, "Local: chmod: %s\n", strerror(errno));
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user