Changeset f94938c in mod_gnutls for src/gnutls_hooks.c
- Timestamp:
- Jan 22, 2020, 12:39:42 PM (13 months ago)
- Branches:
- asyncio, master, proxy-ticket
- Children:
- 4fe52e6
- Parents:
- fcad37b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/gnutls_hooks.c
rfcad37b rf94938c 1449 1449 client_verify_mode = dc->client_verify_mode; 1450 1450 1451 char *verify_mode; 1451 1452 if (client_verify_mode == GNUTLS_CERT_IGNORE) 1452 { 1453 ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, 1454 "%s: verify mode is \"ignore\"", __func__); 1453 verify_mode = "ignore"; 1454 else if (client_verify_mode == GNUTLS_CERT_REQUEST) 1455 verify_mode = "request"; 1456 else if (client_verify_mode == GNUTLS_CERT_REQUIRE) 1457 verify_mode = "require"; 1458 else 1459 verify_mode = "(undefined)"; 1460 ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, 1461 "%s: verify mode is \"%s\"", __func__, verify_mode); 1462 1463 if (client_verify_mode == GNUTLS_CERT_IGNORE) 1464 { 1455 1465 return DECLINED; 1456 1466 } … … 1470 1480 { 1471 1481 ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, 1472 "%s: No certificate, attempting to reauthenticate "1473 " peer(%d)",1482 "%s: No certificate, attempting post-handshake " 1483 "authentication (%d)", 1474 1484 __func__, client_verify_mode); 1475 1485
Note: See TracChangeset
for help on using the changeset viewer.