mirror of
https://github.com/postgres/postgres.git
synced 2025-05-09 18:21:05 +03:00
Fix socket file permissions, from Goran Thyni.
This commit is contained in:
parent
58527aa227
commit
e075271c17
@ -7,7 +7,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $Header: /cvsroot/pgsql/src/backend/libpq/pqcomm.c,v 1.28 1997/11/19 17:52:00 momjian Exp $
|
* $Header: /cvsroot/pgsql/src/backend/libpq/pqcomm.c,v 1.29 1997/11/19 18:28:59 momjian Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -658,7 +658,11 @@ StreamServerPort(char *hostName, short portName, int *fdP)
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
*fdP = fd;
|
*fdP = fd;
|
||||||
if (family == AF_UNIX) atexit(do_unlink);
|
if (family == AF_UNIX)
|
||||||
|
{
|
||||||
|
chmod(sock_path, 0777);
|
||||||
|
atexit(do_unlink);
|
||||||
|
}
|
||||||
return (STATUS_OK);
|
return (STATUS_OK);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user