8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0884acb commit 47ed197Copy full SHA for 47ed197
src/interfaces/libpq/fe-secure.c
@@ -11,7 +11,7 @@
11
*
12
13
* IDENTIFICATION
14
- * $PostgreSQL: pgsql/src/interfaces/libpq/fe-secure.c,v 1.108 2008/11/24 09:15:16 mha Exp $
+ * $PostgreSQL: pgsql/src/interfaces/libpq/fe-secure.c,v 1.109 2008/11/24 19:19:46 mha Exp $
15
16
* NOTES
17
@@ -472,7 +472,7 @@ verify_peer_name_matches_certificate(PGconn *conn)
472
if (pg_strcasecmp(conn->peer_cn, conn->pghost) == 0)
473
/* Exact name match */
474
return true;
475
- else if (fnmatch(conn->peer_cn, conn->pghost, FNM_NOESCAPE | FNM_CASEFOLD) == 0)
+ else if (fnmatch(conn->peer_cn, conn->pghost, FNM_NOESCAPE/* | FNM_CASEFOLD*/) == 0)
476
/* Matched wildcard certificate */
477
478
else
0 commit comments