aboutsummaryrefslogtreecommitdiff
path: root/lib/hostip.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-06-26 11:22:12 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-06-26 11:22:12 +0000
commit308bc9d919d57388f269c473778ea7f6a331d1c5 (patch)
treecbcdaba66dd023ac5e1f12cd25ca70a33e5a60c1 /lib/hostip.h
parentdb566c54ae2529aa7af4073cc9834688f7ef4cdf (diff)
use CURLDEBUG instead of MALLOCDEBUG for preprocessor conditions
Diffstat (limited to 'lib/hostip.h')
-rw-r--r--lib/hostip.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/hostip.h b/lib/hostip.h
index d07b75e3d..36828ee1b 100644
--- a/lib/hostip.h
+++ b/lib/hostip.h
@@ -41,7 +41,7 @@ struct Curl_dns_entry {
time_t timestamp;
long inuse; /* use-counter, make very sure you decrease this
when you're done using the address you received */
-#ifdef MALLOCDEBUG
+#ifdef CURLDEBUG
char *entry_id;
#endif
};
@@ -70,7 +70,7 @@ void Curl_freeaddrinfo(Curl_addrinfo *freeaddr);
/* free cached name info */
void Curl_freednsinfo(void *freethis);
-#ifdef MALLOCDEBUG
+#ifdef CURLDEBUG
void curl_freeaddrinfo(struct addrinfo *freethis,
int line, const char *source);
int curl_getaddrinfo(char *hostname, char *service,