1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-12 09:18:10 +03:00

s4:ldap_controls.c - remove encoding functions for private recalculate SD control

This commit is contained in:
Matthias Dieter Wallnöfer 2010-06-20 18:46:51 +02:00
parent 0714e23971
commit 4cc49d365f

View File

@ -1270,25 +1270,6 @@ static bool decode_relax_request(void *mem_ctx, DATA_BLOB in, void *_out)
return true;
}
static bool encode_recalculate_sd_request(void *mem_ctx, void *in, DATA_BLOB *out)
{
if (in) {
return false;
}
*out = data_blob(NULL, 0);
return true;
}
static bool decode_recalculate_sd_request(void *mem_ctx, DATA_BLOB in, void *_out)
{
if (in.length != 0) {
return false;
}
return true;
}
static const struct ldap_control_handler ldap_known_controls[] = {
{ "1.2.840.113556.1.4.319", decode_paged_results_request, encode_paged_results_request },
{ "1.2.840.113556.1.4.529", decode_extended_dn_request, encode_extended_dn_request },