From: Steve Holme Date: Sun, 4 Jan 2015 13:08:12 +0000 (+0000) Subject: ldap.c: Fixed compilation error X-Git-Tag: curl-7_40_0~22 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=825b0c79689c8c3857bb3e26b48bfd706fe8c1c2;p=thirdparty%2Fcurl.git ldap.c: Fixed compilation error ldap.c:738: error: macro "LDAP_TRACE" passed 2 arguments, but takes just 1 --- diff --git a/lib/ldap.c b/lib/ldap.c index c1a347b082..66be126356 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) {