1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-08 04:58:40 +03:00

Fix syntax of sending a delete request

This commit is contained in:
Volker Lendecke 2009-06-07 11:45:01 +02:00
parent d8f331778f
commit 83dee900bc

View File

@ -1538,7 +1538,7 @@ struct tevent_req *tldap_delete_send(TALLOC_CTX *mem_ctx,
}
asn1_push_tag(state->out, TLDAP_REQ_DELETE);
asn1_write_OctetString(state->out, dn, strlen(dn));
asn1_write(state->out, dn, strlen(dn));
asn1_pop_tag(state->out);
subreq = tldap_msg_send(state, ev, ld, state->id, state->out);