diff options
author | Jim McDonough <jmcd@samba.org> | 2002-03-27 03:09:50 +0000 |
---|---|---|
committer | Jim McDonough <jmcd@samba.org> | 2002-03-27 03:09:50 +0000 |
commit | 71806c49b366faf2466eee7352c71fcdfefd8cc1 (patch) | |
tree | bd04edb7c89c193443840487b4879c609f3de830 /source/libads | |
parent | ac1baba35d7a399bf800ced49a4384e39955e3eb (diff) | |
download | samba-71806c49b366faf2466eee7352c71fcdfefd8cc1.tar.gz samba-71806c49b366faf2466eee7352c71fcdfefd8cc1.tar.xz samba-71806c49b366faf2466eee7352c71fcdfefd8cc1.zip |
Whoops, left the paged control not critical in the paged search...kind of
defeats the purpose.
Diffstat (limited to 'source/libads')
-rw-r--r-- | source/libads/ldap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/libads/ldap.c b/source/libads/ldap.c index 92898bc4db2..431c32a35c6 100644 --- a/source/libads/ldap.c +++ b/source/libads/ldap.c @@ -107,7 +107,7 @@ ADS_STATUS ads_do_paged_search(ADS_STRUCT *ads, const char *bind_path, } ber_flatten(berelem, &berval); PagedResults.ldctl_oid = ADS_PAGE_CTL_OID; - PagedResults.ldctl_iscritical = (char) 0; + PagedResults.ldctl_iscritical = (char) 1; PagedResults.ldctl_value.bv_len = berval->bv_len; PagedResults.ldctl_value.bv_val = berval->bv_val; |