ldap.c: Fixed compilation error

ldap.c:738: error: macro "LDAP_TRACE" passed 2 arguments, but takes
            just 1
This commit is contained in:
Steve Holme 2015-01-04 13:08:12 +00:00
parent 2948954535
commit 825b0c7968
1 changed files with 1 additions and 1 deletions

View File

@ -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) {