diff options
author | Steve Holme <steve_holme@hotmail.com> | 2015-01-04 13:08:12 +0000 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2015-01-04 13:16:20 +0000 |
commit | 825b0c79689c8c3857bb3e26b48bfd706fe8c1c2 (patch) | |
tree | 0a578d8dd51ecd0e50176a0a732df33471f43b9b /lib | |
parent | 29489545353defc776c22dc247155f699f174e31 (diff) |
ldap.c: Fixed compilation error
ldap.c:738: error: macro "LDAP_TRACE" passed 2 arguments, but takes
just 1
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ldap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ldap.c b/lib/ldap.c index c1a347b08..66be12635 100644 --- a/lib/ldap.c +++ b/lib/ldap.c @@ -735,7 +735,7 @@ static int _ldap_url_parse2 (const struct connectdata *conn, LDAPURLDesc *ludp) char *dn = p; char *unescapped; - LDAP_TRACE("DN '%s'\n", dn); + LDAP_TRACE (("DN '%s'\n", dn)); unescapped = curl_easy_unescape(conn->data, dn, 0, NULL); if(!unescapped) { |