diff options
Diffstat (limited to 'src/backend')
-rw-r--r-- | src/backend/libpq/pqcomm.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/backend/libpq/pqcomm.c b/src/backend/libpq/pqcomm.c index d7de962a04c..a9a52d48f91 100644 --- a/src/backend/libpq/pqcomm.c +++ b/src/backend/libpq/pqcomm.c @@ -611,6 +611,10 @@ StreamServerPort(int family, const char *hostName, unsigned short portNumber, static int Lock_AF_UNIX(const char *unixSocketDir, const char *unixSocketPath) { + /* no lock file for abstract sockets */ + if (unixSocketPath[0] == '@') + return STATUS_OK; + /* * Grab an interlock file associated with the socket file. * @@ -642,6 +646,10 @@ Lock_AF_UNIX(const char *unixSocketDir, const char *unixSocketPath) static int Setup_AF_UNIX(const char *sock_path) { + /* no file system permissions for abstract sockets */ + if (sock_path[0] == '@') + return STATUS_OK; + /* * Fix socket ownership/permission if requested. Note we must do this * before we listen() to avoid a window where unwanted connections could |