diff options
author | Andrew Dunstan <andrew@dunslane.net> | 2005-11-10 14:01:55 +0000 |
---|---|---|
committer | Andrew Dunstan <andrew@dunslane.net> | 2005-11-10 14:01:55 +0000 |
commit | f9db22e88e02e59bbf355e6e0468df6c6360d815 (patch) | |
tree | 6310a8963fbed385c8a95e716a27b56eb6d06c27 | |
parent | da4e00bf3798e2cac0dd64b242b6344846ce65e7 (diff) | |
download | postgresql-f9db22e88e02e59bbf355e6e0468df6c6360d815.tar.gz postgresql-f9db22e88e02e59bbf355e6e0468df6c6360d815.zip |
add missing quote mark to ident_file sample line - per Hiroshi Saito
-rw-r--r-- | src/backend/utils/misc/postgresql.conf.sample | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/misc/postgresql.conf.sample b/src/backend/utils/misc/postgresql.conf.sample index 1c68f2231e8..773899e8b77 100644 --- a/src/backend/utils/misc/postgresql.conf.sample +++ b/src/backend/utils/misc/postgresql.conf.sample @@ -34,7 +34,7 @@ #data_directory = 'ConfigDir' # use data in another directory #hba_file = 'ConfigDir/pg_hba.conf' # host-based authentication file -#ident_file = 'ConfigDir/pg_ident.conf # IDENT configuration file +#ident_file = 'ConfigDir/pg_ident.conf' # IDENT configuration file # If external_pid_file is not explicitly set, no extra pid file is written. #external_pid_file = '(none)' # write an extra pid file |