Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Tero Saarni
OpenLDAP
Commits
ad5e334d
Commit
ad5e334d
authored
Nov 10, 2008
by
Quanah Gibson-Mount
Browse files
ITS#5802
parent
3b98428a
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
ad5e334d
...
...
@@ -61,6 +61,7 @@ OpenLDAP 2.4.13 Engineering
Fixed tools unaligned BerElement (ITS#5770)
Fixed contrib nssov crash on empty groups (ITS#5800)
Fixed contrib nssov crash with nssov-map (ITS#5801)
Fixed contrib nssov filter and search limits (ITS#5802)
Added contrib smbk5pwd honor principal expiration (ITS#5766)
Build Environment
Added ldapurl command
...
...
contrib/slapd-modules/nssov/passwd.c
View file @
ad5e334d
...
...
@@ -172,7 +172,7 @@ int nssov_uid2dn(Operation *op,nssov_info *ni,struct berval *uid,struct berval *
if
(
!
isvalidusername
(
uid
))
return
0
;
/* we have to look up the entry */
nssov_filter_byid
(
mi
,
UID
N
_KEY
,
uid
,
&
filter
);
nssov_filter_byid
(
mi
,
UID_KEY
,
uid
,
&
filter
);
BER_BVZERO
(
dn
);
cb
.
sc_private
=
dn
;
cb
.
sc_response
=
uid2dn_cb
;
...
...
@@ -184,6 +184,8 @@ int nssov_uid2dn(Operation *op,nssov_info *ni,struct berval *uid,struct berval *
op2
.
ors_filterstr
=
filter
;
op2
.
ors_filter
=
str2filter_x
(
op
,
filter
.
bv_val
);
op2
.
ors_attrs
=
slap_anlist_no_attrs
;
op2
.
ors_tlimit
=
SLAP_NO_LIMIT
;
op2
.
ors_slimit
=
SLAP_NO_LIMIT
;
rc
=
op2
.
o_bd
->
be_search
(
&
op2
,
&
rs
);
filter_free_x
(
op
,
op2
.
ors_filter
,
1
);
return
rc
==
LDAP_SUCCESS
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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