- Timestamp:
- Apr 16, 2015, 6:46:36 AM (7 years ago)
- Branches:
- asyncio, debian/master, debian/stretch-backports, jessie-backports, master, proxy-ticket, upstream
- Children:
- 2cde026d
- Parents:
- f030883
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/gnutls_io.c
rf030883 r73f6f12 458 458 } 459 459 } 460 return 0;460 return GNUTLS_E_SUCCESS; 461 461 } 462 462 } … … 505 505 506 506 if (ctxt->status == 0) { 507 gnutls_do_handshake(ctxt); 508 ap_log_cerror(APLOG_MARK, APLOG_DEBUG, 0, ctxt->c, 509 "%s: TLS %sconnection opened.", 510 __func__, IS_PROXY_STR(ctxt)); 507 int ret = gnutls_do_handshake(ctxt); 508 if (ret == GNUTLS_E_SUCCESS) 509 ap_log_cerror(APLOG_MARK, APLOG_DEBUG, 0, ctxt->c, 510 "%s: TLS %sconnection opened.", 511 __func__, IS_PROXY_STR(ctxt)); 511 512 } 512 513 … … 606 607 607 608 if (ctxt->status == 0) { 608 gnutls_do_handshake(ctxt); 609 ap_log_cerror(APLOG_MARK, APLOG_DEBUG, 0, ctxt->c, 610 "%s: TLS %sconnection opened.", 611 __func__, IS_PROXY_STR(ctxt)); 609 ret = gnutls_do_handshake(ctxt); 610 if (ret == GNUTLS_E_SUCCESS) 611 ap_log_cerror(APLOG_MARK, APLOG_DEBUG, 0, ctxt->c, 612 "%s: TLS %sconnection opened.", 613 __func__, IS_PROXY_STR(ctxt)); 612 614 } 613 615
Note: See TracChangeset
for help on using the changeset viewer.