Changeset a66b5be in mod_gnutls
- Timestamp:
- Aug 11, 2020, 11:34:46 AM (2 years ago)
- Branches:
- asyncio, master
- Children:
- facbb08
- Parents:
- 3935417
- Location:
- src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/gnutls_hooks.c
r3935417 ra66b5be 161 161 { 162 162 ap_log_perror(APLOG_MARK, APLOG_EMERG, 0, plog, 163 "gnutls_priority_init failed for default '%s': %s (%d)", 164 MGS_DEFAULT_PRIORITY, gnutls_strerror(ret), ret); 163 "gnutls_priority_init failed for default '" 164 MGS_DEFAULT_PRIORITY "': %s (%d)", 165 gnutls_strerror(ret), ret); 165 166 return DONE; 166 167 } … … 722 723 ap_log_error(APLOG_MARK, APLOG_INFO, 0, s, 723 724 "No GnuTLSPriorities directive for host '%s:%d', " 724 "using default '%s'.", 725 s->server_hostname, s->addrs->host_port, 726 MGS_DEFAULT_PRIORITY); 725 "using default '" MGS_DEFAULT_PRIORITY "'.", 726 s->server_hostname, s->addrs->host_port); 727 727 sc->priorities = mgs_get_default_prio(); 728 728 } -
src/gnutls_proxy.c
r3935417 ra66b5be 174 174 ap_log_error(APLOG_MARK, APLOG_INFO, 0, s, 175 175 "No GnuTLSProxyPriorities directive for host '%s:%d', " 176 "using default '%s'.", 177 s->server_hostname, s->addrs->host_port, 178 MGS_DEFAULT_PRIORITY); 176 "using default '" MGS_DEFAULT_PRIORITY "'.", 177 s->server_hostname, s->addrs->host_port); 179 178 sc->proxy_priorities = mgs_get_default_prio(); 180 179 }
Note: See TracChangeset
for help on using the changeset viewer.