diff options
Diffstat (limited to 'src/interfaces/libpq/fe-connect.c')
-rw-r--r-- | src/interfaces/libpq/fe-connect.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/libpq/fe-connect.c b/src/interfaces/libpq/fe-connect.c index e7781d010f0..7d04d3664e0 100644 --- a/src/interfaces/libpq/fe-connect.c +++ b/src/interfaces/libpq/fe-connect.c @@ -1093,7 +1093,7 @@ connectOptions2(PGconn *conn) { ch->type = CHT_HOST_NAME; #ifdef HAVE_UNIX_SOCKETS - if (is_absolute_path(ch->host)) + if (is_unixsock_path(ch->host)) ch->type = CHT_UNIX_SOCKET; #endif } @@ -6945,7 +6945,7 @@ passwordFromFile(const char *hostname, const char *port, const char *dbname, /* 'localhost' matches pghost of '' or the default socket directory */ if (hostname == NULL || hostname[0] == '\0') hostname = DefaultHost; - else if (is_absolute_path(hostname)) + else if (is_unixsock_path(hostname)) /* * We should probably use canonicalize_path(), but then we have to |