Don't use the umask to chmod local domain server sockets, use

the mask
This commit is contained in:
brian 2000-05-31 09:06:52 +00:00
parent fbbc0a48e3
commit 27d9c9b35a

View File

@ -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;
}