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

the mask
This commit is contained in:
Brian Somers 2000-05-31 09:06:52 +00:00
parent 318b02fdb9
commit 3356db52df

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