diff options
author | Simo Sorce <idra@samba.org> | 2006-01-13 22:48:08 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:51:02 -0500 |
commit | eed0a95128714b93b9ff484780e5d74fc301be6d (patch) | |
tree | 5b31b495ac32ed7a3933d8d3689b50890dcf7f3e /source4/libcli/ldap | |
parent | c582cb23f784546dd47cd0847f1a6d7269bd9bd6 (diff) | |
download | samba-eed0a95128714b93b9ff484780e5d74fc301be6d.tar.gz samba-eed0a95128714b93b9ff484780e5d74fc301be6d.tar.bz2 samba-eed0a95128714b93b9ff484780e5d74fc301be6d.zip |
r12917: fix decoding of ldap controls
some more work on timeouts
(This used to be commit a7e2fe3cb33be2effff7eb764047567f2da3cd55)
Diffstat (limited to 'source4/libcli/ldap')
-rw-r--r-- | source4/libcli/ldap/ldap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/libcli/ldap/ldap.c b/source4/libcli/ldap/ldap.c index d021fc3bd6..b281f62ed0 100644 --- a/source4/libcli/ldap/ldap.c +++ b/source4/libcli/ldap/ldap.c @@ -1264,7 +1264,7 @@ BOOL ldap_decode(struct asn1_data *data, struct ldap_message *msg) asn1_start_tag(data, ASN1_CONTEXT(0)); for (i=0; asn1_peek_tag(data, ASN1_SEQUENCE(0)); i++) { - asn1_start_tag(data, ASN1_SEQUENCE(0)); + /* asn1_start_tag(data, ASN1_SEQUENCE(0)); */ ctrl = talloc_realloc(msg, ctrl, struct ldap_Control *, i+2); if (!ctrl) { |