diff options
author | Gisle Vanem <gvanem@broadpark.no> | 2009-06-12 14:15:13 +0000 |
---|---|---|
committer | Gisle Vanem <gvanem@broadpark.no> | 2009-06-12 14:15:13 +0000 |
commit | aa1da57c374af7ac368ba28b6419b1cf4797130c (patch) | |
tree | 990e85bb00072e327589eeee6add3f79ed8162e5 | |
parent | c2ce2aa4deea21fabfc1cb6fd65a6581b41390bd (diff) |
Replace CURLDEBUG with DEBUGBUILD.
-rw-r--r-- | ares/ares_init.c | 2 | ||||
-rw-r--r-- | ares/ares_private.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ares/ares_init.c b/ares/ares_init.c index bd29fe94f..5117dfa53 100644 --- a/ares/ares_init.c +++ b/ares/ares_init.c @@ -119,7 +119,7 @@ int ares_init_options(ares_channel *channelptr, struct ares_options *options, struct server_state *server; struct timeval now; -#ifdef CURLDEBUG +#ifdef DEBUGBUILD const char *env = getenv("CARES_MEMDEBUG"); if (env) diff --git a/ares/ares_private.h b/ares/ares_private.h index c84a1d0b3..f1b80995b 100644 --- a/ares/ares_private.h +++ b/ares/ares_private.h @@ -337,7 +337,7 @@ long ares__tvdiff(struct timeval t1, struct timeval t2); (c)->sock_state_cb((c)->sock_state_cb_data, (s), (r), (w)); \ } while (0) -#ifdef CURLDEBUG +#ifdef DEBUGBUILD /* This is low-level hard-hacking memory leak tracking and similar. Using the libcurl lowlevel code from within library is ugly and only works when c-ares is built and linked with a similarly debug-build libcurl, but we do |