Commit cce5d851 authored by Bruce Momjian's avatar Bruce Momjian

pg_upgrade: revert changing '' to ""

On the command line, GUC option strings are handled by the guc parser,
not by the shell parser, so '' is the proper way to represent a
zero-length string.  This reverts commit
3132a9b7.
parent 568d4138
...@@ -190,7 +190,7 @@ start_postmaster(ClusterInfo *cluster, bool throw_error) ...@@ -190,7 +190,7 @@ start_postmaster(ClusterInfo *cluster, bool throw_error)
#ifdef HAVE_UNIX_SOCKETS #ifdef HAVE_UNIX_SOCKETS
/* prevent TCP/IP connections, restrict socket access */ /* prevent TCP/IP connections, restrict socket access */
strcat(socket_string, strcat(socket_string,
" -c listen_addresses=\"\" -c unix_socket_permissions=0700"); " -c listen_addresses='' -c unix_socket_permissions=0700");
/* Have a sockdir? Tell the postmaster. */ /* Have a sockdir? Tell the postmaster. */
if (cluster->sockdir) if (cluster->sockdir)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment