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

Commit47ed197

Browse files
committed
Disable FNM_CASEFOLD. Need a proper solution later, but just comment
it out for now so the buildfarm recovers.
1 parent0884acb commit47ed197

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 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.108 2008/11/2409:15:16 mha Exp $
14+
* $PostgreSQL: pgsql/src/interfaces/libpq/fe-secure.c,v 1.109 2008/11/2419:19:46 mha Exp $
1515
*
1616
* NOTES
1717
*
@@ -472,7 +472,7 @@ verify_peer_name_matches_certificate(PGconn *conn)
472472
if (pg_strcasecmp(conn->peer_cn,conn->pghost)==0)
473473
/* Exact name match */
474474
return true;
475-
elseif (fnmatch(conn->peer_cn,conn->pghost,FNM_NOESCAPE |FNM_CASEFOLD)==0)
475+
elseif (fnmatch(conn->peer_cn,conn->pghost,FNM_NOESCAPE/* | FNM_CASEFOLD*/)==0)
476476
/* Matched wildcard certificate */
477477
return true;
478478
else

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp