Changeset 1a53be1 in mod_gnutls


Ignore:
Timestamp:
Nov 2, 2008, 8:22:51 AM (14 years ago)
Author:
Nokis Mavrogiannopoulos <nmav@…>
Branches:
asyncio, debian/master, debian/stretch-backports, jessie-backports, main, master, msva, proxy-ticket, upstream
Children:
56f3628
Parents:
6d4de37
git-author:
Nikos Mavrogiannopoulos <nmav@…> (11/02/08 08:22:51)
git-committer:
Nokis Mavrogiannopoulos <nmav@…> (11/02/08 08:22:51)
Message:

APLOG_EMERG was replaced with APLOG_STARTUP for startup messages.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/gnutls_hooks.c

    r6d4de37 r1a53be1  
    401401
    402402                if (rv < 0 && sc->enabled == GNUTLS_ENABLED_TRUE) {
    403                     ap_log_error(APLOG_MARK, APLOG_EMERG, 0, s,
     403                    ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, s,
    404404                                 "[GnuTLS] - Host '%s:%d' is missing a "
    405405                                 "SRP password or conf File!",
     
    413413                sc->cert_pgp == NULL &&
    414414                sc->enabled == GNUTLS_ENABLED_TRUE) {
    415                 ap_log_error(APLOG_MARK, APLOG_EMERG, 0, s,
     415                ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, s,
    416416                             "[GnuTLS] - Host '%s:%d' is missing a "
    417417                             "Certificate File!", s->server_hostname,
     
    423423              ((sc->certs_x509[0] != NULL && sc->privkey_x509 == NULL) ||
    424424              (sc->cert_pgp != NULL && sc->privkey_pgp == NULL))) {
    425                 ap_log_error(APLOG_MARK, APLOG_EMERG, 0, s,
     425                ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, s,
    426426                             "[GnuTLS] - Host '%s:%d' is missing a "
    427427                             "Private Key File!",
     
    436436
    437437                if (rv < 0) {
    438                     ap_log_error(APLOG_MARK, APLOG_EMERG, 0, s,
     438                    ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, s,
    439439                                 "[GnuTLS] - Cannot find a certificate for host '%s:%d'!",
    440440                                 s->server_hostname, s->port);
Note: See TracChangeset for help on using the changeset viewer.