Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit af3c7e6

Browse files
committed
Fix reference to nonexistent configure option
--enable-ssl -> --with-openssl
1 parent a68055e commit af3c7e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/libpq/hba.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
*
1111
*
1212
* IDENTIFICATION
13-
* $PostgreSQL: pgsql/src/backend/libpq/hba.c,v 1.207 2010/05/26 16:43:13 tgl Exp $
13+
* $PostgreSQL: pgsql/src/backend/libpq/hba.c,v 1.208 2010/06/03 19:29:38 petere Exp $
1414
*
1515
*-------------------------------------------------------------------------
1616
*/
@@ -711,7 +711,7 @@ parse_hba_line(List *line, int line_num, HbaLine *parsedline)
711711
ereport(LOG,
712712
(errcode(ERRCODE_CONFIG_FILE_ERROR),
713713
errmsg("hostssl not supported on this platform"),
714-
errhint("Compile with --enable-ssl to use SSL connections."),
714+
errhint("Compile with --with-openssl to use SSL connections."),
715715
errcontext("line %d of configuration file \"%s\"",
716716
line_num, HbaFileName)));
717717
return false;

0 commit comments

Comments
 (0)