1
0
mirror of https://github.com/moparisthebest/curl synced 2024-11-15 14:05:03 -05:00

ldap: Remove the unescape_elements() function

Due to the recent modifications this function is no longer used.
This commit is contained in:
Steve Holme 2015-01-03 21:04:13 +00:00
parent f9b50910e0
commit ea4f98dca6

View File

@ -681,14 +681,6 @@ static bool split_str(char *str, char ***out, size_t *count)
return TRUE; return TRUE;
} }
/*
* Unescape the LDAP-URL components
*/
static bool unescape_elements (void *data, LDAPURLDesc *ludp)
{
return (TRUE);
}
/* /*
* Break apart the pieces of an LDAP URL. * Break apart the pieces of an LDAP URL.
* Syntax: * Syntax:
@ -765,7 +757,7 @@ static int _ldap_url_parse2 (const struct connectdata *conn, LDAPURLDesc *ludp)
p = q; p = q;
if(!p) if(!p)
goto success; goto quit;
/* Parse the attributes. skip "??" */ /* Parse the attributes. skip "??" */
q = strchr(p, '?'); q = strchr(p, '?');
@ -838,7 +830,7 @@ static int _ldap_url_parse2 (const struct connectdata *conn, LDAPURLDesc *ludp)
p = q; p = q;
if(!p) if(!p)
goto success; goto quit;
/* Parse the scope. skip "??" */ /* Parse the scope. skip "??" */
q = strchr(p, '?'); q = strchr(p, '?');
@ -857,7 +849,7 @@ static int _ldap_url_parse2 (const struct connectdata *conn, LDAPURLDesc *ludp)
p = q; p = q;
if(!p) if(!p)
goto success; goto quit;
/* Parse the filter */ /* Parse the filter */
q = strchr(p, '?'); q = strchr(p, '?');
@ -903,10 +895,6 @@ static int _ldap_url_parse2 (const struct connectdata *conn, LDAPURLDesc *ludp)
goto quit; goto quit;
} }
success:
if(!unescape_elements(conn->data, ludp))
rc = LDAP_NO_MEMORY;
quit: quit:
#if defined(CURL_LDAP_WIN) && \ #if defined(CURL_LDAP_WIN) && \
(defined(USE_WIN32_IDN) || defined(USE_WINDOWS_SSPI)) (defined(USE_WIN32_IDN) || defined(USE_WINDOWS_SSPI))