- Timestamp:
- Oct 1, 2008, 12:06:35 PM (14 years ago)
- Branches:
- asyncio, debian/master, debian/stretch-backports, jessie-backports, master, msva, proxy-ticket, upstream
- Children:
- 7ca474b
- Parents:
- a208cd3
- git-author:
- Nikos Mavrogiannopoulos <nmav@…> (10/01/08 12:06:35)
- git-committer:
- Nokis Mavrogiannopoulos <nmav@…> (10/01/08 12:06:35)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/gnutls_hooks.c
ra208cd3 r52149ee 410 410 #endif 411 411 412 if (sc->certs_x509[0] == NULL 413 && sc->enabled == GNUTLS_ENABLED_TRUE) { 412 if (sc->certs_x509[0] == NULL && 413 sc->cert_pgp == NULL && 414 sc->enabled == GNUTLS_ENABLED_TRUE) { 414 415 ap_log_error(APLOG_MARK, APLOG_EMERG, 0, s, 415 416 "[GnuTLS] - Host '%s:%d' is missing a " … … 419 420 } 420 421 421 if (sc->privkey_x509 == NULL 422 && sc->enabled == GNUTLS_ENABLED_TRUE) { 422 if (sc->enabled == GNUTLS_ENABLED_TRUE && 423 ((sc->certs_x509[0] != NULL && sc->privkey_x509 == NULL) || 424 (sc->cert_pgp != NULL && sc->privkey_pgp == NULL))) { 423 425 ap_log_error(APLOG_MARK, APLOG_EMERG, 0, s, 424 426 "[GnuTLS] - Host '%s:%d' is missing a "
Note: See TracChangeset
for help on using the changeset viewer.