|
|
|
|
@ -10,7 +10,7 @@ |
|
|
|
|
* Written by Peter Eisentraut <peter_e@gmx.net>. |
|
|
|
|
* |
|
|
|
|
* IDENTIFICATION |
|
|
|
|
* $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.157 2003/09/11 18:30:39 momjian Exp $ |
|
|
|
|
* $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.158 2003/09/15 22:28:58 tgl Exp $ |
|
|
|
|
* |
|
|
|
|
*-------------------------------------------------------------------- |
|
|
|
|
*/ |
|
|
|
|
@ -1540,7 +1540,7 @@ static struct config_string ConfigureNamesString[] = |
|
|
|
|
|
|
|
|
|
{ |
|
|
|
|
{"unix_socket_group", PGC_POSTMASTER, CONN_AUTH_SETTINGS, |
|
|
|
|
gettext_noop("The group owner of the Unix domain socket"), |
|
|
|
|
gettext_noop("The owning group of the Unix-domain socket"), |
|
|
|
|
gettext_noop("(The owning user of the socket is always the user " |
|
|
|
|
"that starts the server.)") |
|
|
|
|
}, |
|
|
|
|
@ -1550,7 +1550,7 @@ static struct config_string ConfigureNamesString[] = |
|
|
|
|
|
|
|
|
|
{ |
|
|
|
|
{"unix_socket_directory", PGC_POSTMASTER, CONN_AUTH_SETTINGS, |
|
|
|
|
gettext_noop("The Unix-domain socket directory to listen to"), |
|
|
|
|
gettext_noop("Directory where the Unix-domain socket will be created"), |
|
|
|
|
NULL |
|
|
|
|
}, |
|
|
|
|
&UnixSocketDir, |
|
|
|
|
|