DEBUGF() is a new conveniant macro to add infof() calls (or similar) for

debug builds only. Made the ftp code use it on several places.
This commit is contained in:
Daniel Stenberg 2005-05-07 13:57:07 +00:00
parent ef5eea689a
commit 9c5f79c56a
2 changed files with 20 additions and 15 deletions

View file

@ -295,4 +295,10 @@ typedef int curl_socket_t;
#define USE_NTLM
#endif
#ifdef CURLDEBUG
#define DEBUGF(x) x
#else
#define DEBUGF(x)
#endif
#endif /* __CONFIG_H */