diff options
author | Daniel Stenberg <daniel@haxx.se> | 2016-08-30 23:38:06 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2016-08-30 23:38:06 +0200 |
commit | c69cafe7e260144142f8cc89f74c5b3dc8294451 (patch) | |
tree | 75bc34a4b66c836eb413985dab189ad5da700b78 /lib/connect.c | |
parent | b73b423ba09c68e9381a5ca8a024f0cb2712de48 (diff) | |
download | curl-c69cafe7e260144142f8cc89f74c5b3dc8294451.tar.gz |
connect: fix #ifdefs for debug versions of conn/streamclose() macros
CURLDEBUG is for the memory debugging
DEBUGBUILD is for the extra debug stuff
Pointed-out-by: Steve Holme
Diffstat (limited to 'lib/connect.c')
-rw-r--r-- | lib/connect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/connect.c b/lib/connect.c index eca817c35..3225d70cf 100644 --- a/lib/connect.c +++ b/lib/connect.c @@ -1376,7 +1376,7 @@ CURLcode Curl_socket(struct connectdata *conn, */ void Curl_conncontrol(struct connectdata *conn, int ctrl /* see defines in header */ -#ifdef CURLDEBUG +#ifdef DEBUGBUILD , const char *reason #endif ) |