Commit d38891c9 authored by Gisle Vanem's avatar Gisle Vanem
Browse files

Reversed the 'HAVE_LDAP_URL_PARSE' ifdef statement.

parent 381e3729
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -133,10 +133,10 @@ CURLcode Curl_ldap(struct connectdata *conn, bool *done)
          LDAP_VENDOR_NAME, LDAP_VENDOR_VERSION);
  infof(data, "LDAP local: %s\n", data->change.url);

#ifndef HAVE_LDAP_URL_PARSE
  rc = _ldap_url_parse(conn, &ludp);
#else
#ifdef HAVE_LDAP_URL_PARSE
  rc = ldap_url_parse(data->change.url, &ludp);
#else
  rc = _ldap_url_parse(conn, &ludp);
#endif
  if (rc != 0) {
    failf(data, "LDAP local: %s", ldap_err2string(rc));
@@ -622,5 +622,5 @@ static void _ldap_free_urldesc (LDAPURLDesc *ludp)
  }
  free (ludp);
}
#endif  /* HAVE_LDAP_URL_PARSE */
#endif  /* !HAVE_LDAP_URL_PARSE */
#endif  /* CURL_DISABLE_LDAP */