diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2010-06-03 19:29:38 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2010-06-03 19:29:38 +0000 |
commit | af3c7e60eef07edfe90de58c80103fd780124954 (patch) | |
tree | f4e5185dadcf474ba44db77e6bbaa4e2bae6ef2c | |
parent | a68055eab65c97c8019e987255d8d4d7e6490a42 (diff) | |
download | postgresql-af3c7e60eef07edfe90de58c80103fd780124954.tar.gz postgresql-af3c7e60eef07edfe90de58c80103fd780124954.zip |
Fix reference to nonexistent configure option
--enable-ssl -> --with-openssl
-rw-r--r-- | src/backend/libpq/hba.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/libpq/hba.c b/src/backend/libpq/hba.c index 2df10bad99b..02b57920f8e 100644 --- a/src/backend/libpq/hba.c +++ b/src/backend/libpq/hba.c @@ -10,7 +10,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/libpq/hba.c,v 1.207 2010/05/26 16:43:13 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/libpq/hba.c,v 1.208 2010/06/03 19:29:38 petere Exp $ * *------------------------------------------------------------------------- */ @@ -711,7 +711,7 @@ parse_hba_line(List *line, int line_num, HbaLine *parsedline) ereport(LOG, (errcode(ERRCODE_CONFIG_FILE_ERROR), errmsg("hostssl not supported on this platform"), - errhint("Compile with --enable-ssl to use SSL connections."), + errhint("Compile with --with-openssl to use SSL connections."), errcontext("line %d of configuration file \"%s\"", line_num, HbaFileName))); return false; |