mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-29 11:09:34 -05:00
Fix typo in one-level searches, left over from -r1.23 cleanup
This commit is contained in:
parent
ee30206bc2
commit
b623e4495b
1 changed files with 1 additions and 2 deletions
|
|
@ -294,7 +294,6 @@ glue_back_search (
|
|||
BackendDB *be;
|
||||
int i, rc = 0, t2limit = 0, s2limit = 0;
|
||||
long stoptime = 0;
|
||||
struct berval bv;
|
||||
glue_state gs = {0};
|
||||
slap_callback cb;
|
||||
|
||||
|
|
@ -373,7 +372,7 @@ glue_back_search (
|
|||
s2limit, t2limit, filter, filterstr,
|
||||
attrs, attrsonly);
|
||||
|
||||
} else if (dnIsSuffix(&bv, &be->be_nsuffix[0])) {
|
||||
} else if (dnIsSuffix(ndn, &be->be_nsuffix[0])) {
|
||||
rc = be->be_search (be, conn, op, dn, ndn,
|
||||
scope, deref,
|
||||
s2limit, t2limit, filter, filterstr,
|
||||
|
|
|
|||
Loading…
Reference in a new issue