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 | 90ada79bbf227afd18e585b203dc1b46166a1318 (patch) | |
tree | 2bcf0cc16f430a9fa1d2164ef42c0945640d2493 | |
parent | 7d7c594644d9b374e522f208b1f0bd5ab8abb9ab (diff) | |
download | samba-90ada79bbf227afd18e585b203dc1b46166a1318.tar.gz samba-90ada79bbf227afd18e585b203dc1b46166a1318.tar.bz2 samba-90ada79bbf227afd18e585b203dc1b46166a1318.zip |
Whoops, left the paged control not critical in the paged search...kind of
defeats the purpose.
(This used to be commit 71806c49b366faf2466eee7352c71fcdfefd8cc1)
-rw-r--r-- | source3/libads/ldap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libads/ldap.c b/source3/libads/ldap.c index 92898bc4db..431c32a35c 100644 --- a/source3/libads/ldap.c +++ b/source3/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; |