Commit ac73ced7 authored by Tom Lane's avatar Tom Lane

Fix already-obsolete hint message ... sslverify parameter is no more.

parent 5c7f5534
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/interfaces/libpq/fe-secure.c,v 1.124 2009/04/24 09:43:10 mha Exp $ * $PostgreSQL: pgsql/src/interfaces/libpq/fe-secure.c,v 1.125 2009/05/03 17:16:58 tgl Exp $
* *
* NOTES * NOTES
* *
...@@ -1068,7 +1068,7 @@ initialize_SSL(PGconn *conn) ...@@ -1068,7 +1068,7 @@ initialize_SSL(PGconn *conn)
{ {
printfPQExpBuffer(&conn->errorMessage, printfPQExpBuffer(&conn->errorMessage,
libpq_gettext("root certificate file \"%s\" does not exist\n" libpq_gettext("root certificate file \"%s\" does not exist\n"
"Either supply the file or set sslverify to \"none\" to disable server certificate verification.\n"), fnbuf); "Either provide the file or change sslmode to disable server certificate verification.\n"), fnbuf);
return -1; return -1;
} }
} }
......
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