mirror of
https://github.com/curl/curl.git
synced 2026-08-02 01:50:32 +03:00
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:
parent
ef5eea689a
commit
9c5f79c56a
2 changed files with 20 additions and 15 deletions
|
|
@ -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 */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue