|
11 | 11 | * |
12 | 12 | * |
13 | 13 | * IDENTIFICATION |
14 | | - * $PostgreSQL: pgsql/src/interfaces/libpq/fe-secure.c,v 1.122 2009/03/31 01:41:27 tgl Exp $ |
| 14 | + * $PostgreSQL: pgsql/src/interfaces/libpq/fe-secure.c,v 1.123 2009/04/14 17:30:16 momjian Exp $ |
15 | 15 | * |
16 | 16 | * NOTES |
17 | 17 | * |
@@ -1067,7 +1067,8 @@ initialize_SSL(PGconn *conn) |
1067 | 1067 | if (strcmp(conn->sslverify,"none")!=0) |
1068 | 1068 | { |
1069 | 1069 | printfPQExpBuffer(&conn->errorMessage, |
1070 | | -libpq_gettext("root certificate file \"%s\" does not exist"),fnbuf); |
| 1070 | +libpq_gettext("root certificate file \"%s\" does not exist\n" |
| 1071 | +"Either supply the file or set sslverify to \"none\" to disable server certificate verification.\n"),fnbuf); |
1071 | 1072 | return-1; |
1072 | 1073 | } |
1073 | 1074 | } |
|