Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitcc1d292

Browse files
committed
Fix accidental (I suppose) introduction of non-ASCII quote marks.
1 parentcfb9c7f commitcc1d292

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

‎src/interfaces/libpq/fe-secure.c

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
*
1212
*
1313
* IDENTIFICATION
14-
* $PostgreSQL: pgsql/src/interfaces/libpq/fe-secure.c,v 1.117 2009/01/1908:59:13 petere Exp $
14+
* $PostgreSQL: pgsql/src/interfaces/libpq/fe-secure.c,v 1.118 2009/01/1917:17:50 tgl Exp $
1515
*
1616
* NOTES
1717
*
@@ -1043,13 +1043,14 @@ initialize_SSL(PGconn *conn)
10431043
}
10441044

10451045
SSL_CTX_set_verify(SSL_context,SSL_VERIFY_PEER,verify_cb);
1046-
}/* root certificate exists */
1046+
}
10471047
else
10481048
{
1049+
/* stat() failed; assume cert file doesn't exist */
10491050
if (strcmp(conn->sslverify,"none")!=0)
10501051
{
10511052
printfPQExpBuffer(&conn->errorMessage,
1052-
libpq_gettext("root certificate file»%s« does not exist"),fnbuf);
1053+
libpq_gettext("root certificate file\"%s\" does not exist"),fnbuf);
10531054
return-1;
10541055
}
10551056
}

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp