Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
openldap
OpenLDAP
Commits
93f3ae50
Commit
93f3ae50
authored
Nov 07, 2008
by
Ralf Haferkamp
Browse files
Adapt to recent changes in filter_free_x() interface
parent
5dc58028
Changes
2
Hide whitespace changes
Inline
Side-by-side
contrib/slapd-modules/nssov/nssov.h
View file @
93f3ae50
...
...
@@ -277,7 +277,7 @@ int nssov_shadow_all(nssov_info *ni,TFILE *fp,Operation *op);
op->ors_slimit = SLAP_NO_LIMIT; \
/* do the internal search */
\
op->o_bd->be_search( op, &rs ); \
filter_free_x( op, op->ors_filter ); \
filter_free_x( op, op->ors_filter
, 1
); \
return 0; \
}
...
...
contrib/slapd-modules/nssov/passwd.c
View file @
93f3ae50
...
...
@@ -185,7 +185,7 @@ int nssov_uid2dn(Operation *op,nssov_info *ni,struct berval *uid,struct berval *
op2
.
ors_filter
=
str2filter_x
(
op
,
filter
.
bv_val
);
op2
.
ors_attrs
=
slap_anlist_no_attrs
;
rc
=
op2
.
o_bd
->
be_search
(
&
op2
,
&
rs
);
filter_free_x
(
op
,
op2
.
ors_filter
);
filter_free_x
(
op
,
op2
.
ors_filter
,
1
);
return
rc
==
LDAP_SUCCESS
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment