X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=citadel%2Fmodules%2Fc-ares-dns%2Fserv_c-ares-dns.c;fp=citadel%2Fmodules%2Fc-ares-dns%2Fserv_c-ares-dns.c;h=8878f995f67d63a3fbe0d95866388c75a87472d1;hb=8a42ffd1e764e16f783fa8a995ee42536b9c156f;hp=a06e2e5a18b3242f1cd0355f9447b062e4ea785d;hpb=32b7b8ba5ec4d8c4af7ca65f0db33f7fd1288ce1;p=citadel.git diff --git a/citadel/modules/c-ares-dns/serv_c-ares-dns.c b/citadel/modules/c-ares-dns/serv_c-ares-dns.c index a06e2e5a1..8878f995f 100644 --- a/citadel/modules/c-ares-dns/serv_c-ares-dns.c +++ b/citadel/modules/c-ares-dns/serv_c-ares-dns.c @@ -305,18 +305,18 @@ void QueryCbDone(AsyncIO *IO) void DestructCAres(AsyncIO *IO) { - EV_DNS_syslog(LOG_DEBUG, "C-ARES: %s\n", __FUNCTION__); + EVNC_syslog(LOG_DEBUG, "C-ARES: %s\n", __FUNCTION__); - EV_DNS_LOG_STOP(DNS.recv_event); + EVNC_syslog(LOG_DEBUG, "C-ARES: - stopping %s %d %p \n", "DNS.recv_event", IO->DNS.recv_event.fd, &IO->DNS.recv_event); ev_io_stop(event_base, &IO->DNS.recv_event); - EV_DNS_LOG_STOP(DNS.send_event); + EVNC_syslog(LOG_DEBUG, "C-ARES: - stopping %s %d %p\n", "DNS.send_event", IO->DNS.send_event.fd, &IO->DNS.send_event); ev_io_stop(event_base, &IO->DNS.send_event); - EV_DNS_LOGT_STOP(DNS.timeout); + EVNC_syslog(LOG_DEBUG, "C-ARES: - stopping %s %p\n", "DNS.timeout", &IO->DNS.send_event); ev_timer_stop (event_base, &IO->DNS.timeout); - EV_DNS_LOGT_STOP(unwind_stack); + EVNC_syslog(LOG_DEBUG, "C-ARES: - stopping %s %p\n", "DNS.unwind_stack", &IO->unwind_stack); ev_idle_stop(event_base, &IO->unwind_stack); ares_destroy_options(&IO->DNS.Options); }