Changeset 8273683 in mod_gnutls for src/gnutls_hooks.c
- Timestamp:
- Oct 23, 2018, 2:31:48 AM (4 years ago)
- Branches:
- asyncio, debian/master, master, proxy-ticket
- Children:
- 359f009
- Parents:
- 469861a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/gnutls_hooks.c
r469861a r8273683 722 722 ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, s, 723 723 "GnuTLS: Host '%s:%d' is missing a Certificate File!", 724 s->server_hostname, s-> port);724 s->server_hostname, s->addrs->host_port); 725 725 return HTTP_UNAUTHORIZED; 726 726 } … … 730 730 ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, s, 731 731 "GnuTLS: Host '%s:%d' is missing a Private Key File!", 732 s->server_hostname, s-> port);732 s->server_hostname, s->addrs->host_port); 733 733 return HTTP_UNAUTHORIZED; 734 734 } … … 741 741 "%s: loading proxy credentials for host " 742 742 "'%s:%d' failed, exiting!", 743 __func__, s->server_hostname, s-> port);743 __func__, s->server_hostname, s->addrs->host_port); 744 744 return HTTP_PROXY_AUTHENTICATION_REQUIRED; 745 745 }
Note: See TracChangeset
for help on using the changeset viewer.