Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Joe Martin
OpenLDAP
Commits
2ced451d
Commit
2ced451d
authored
Nov 18, 2009
by
Quanah Gibson-Mount
Browse files
ITS#6381
parent
95b9dc63
Changes
6
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
2ced451d
...
...
@@ -13,6 +13,7 @@ OpenLDAP 2.4.20 Engineering
Fixed slapd asserts in minimal environment (ITS#6361)
Fixed slapd configArgs initialization (ITS#6363)
Fixed slapd debug handling of LDAP_DEBUG_ANY (ITS#6324)
Fixed slapd db_open with connection_fake_init (ITS#6381)
Fixed slapd with embedded \0 in bervals (ITS#6378,ITS#6379)
Fixed slapd inclusion of ac/unistd.h (ITS#6342)
Fixed slapd invalid dn log message (ITS#6309)
...
...
servers/slapd/back-monitor/init.c
View file @
2ced451d
...
...
@@ -841,7 +841,7 @@ monitor_search2ndn(
}
thrctx
=
ldap_pvt_thread_pool_context
();
connection_fake_init
(
&
conn
,
&
opbuf
,
thrctx
);
connection_fake_init
2
(
&
conn
,
&
opbuf
,
thrctx
,
0
);
op
=
&
opbuf
.
ob_op
;
op
->
o_tag
=
LDAP_REQ_SEARCH
;
...
...
servers/slapd/back-sql/init.c
View file @
2ced451d
...
...
@@ -548,7 +548,7 @@ backsql_db_open(
}
/* This should just be to force schema loading */
connection_fake_init
(
&
conn
,
&
opbuf
,
thrctx
);
connection_fake_init
2
(
&
conn
,
&
opbuf
,
thrctx
,
0
);
op
=
&
opbuf
.
ob_op
;
op
->
o_bd
=
bd
;
if
(
backsql_get_db_conn
(
op
,
&
dbh
)
!=
LDAP_SUCCESS
)
{
...
...
servers/slapd/overlays/dds.c
View file @
2ced451d
...
...
@@ -137,7 +137,7 @@ dds_expire( void *ctx, dds_info_t *di )
int
rc
;
char
*
extra
=
""
;
connection_fake_init
(
&
conn
,
&
opbuf
,
ctx
);
connection_fake_init
2
(
&
conn
,
&
opbuf
,
ctx
,
0
);
op
=
&
opbuf
.
ob_op
;
op
->
o_tag
=
LDAP_REQ_SEARCH
;
...
...
@@ -1627,7 +1627,7 @@ dds_count( void *ctx, BackendDB *be )
int
rc
;
char
*
extra
=
""
;
connection_fake_init
(
&
conn
,
&
opbuf
,
ctx
);
connection_fake_init
2
(
&
conn
,
&
opbuf
,
ctx
,
0
);
op
=
&
opbuf
.
ob_op
;
op
->
o_tag
=
LDAP_REQ_SEARCH
;
...
...
servers/slapd/overlays/pcache.c
View file @
2ced451d
...
...
@@ -4490,7 +4490,7 @@ pcache_db_open2(
AttributeAssertion
ava
=
ATTRIBUTEASSERTION_INIT
;
AttributeName
attrs
[
2
]
=
{{{
0
}}};
connection_fake_init
(
&
conn
,
&
opbuf
,
thrctx
);
connection_fake_init
2
(
&
conn
,
&
opbuf
,
thrctx
,
0
);
op
=
&
opbuf
.
ob_op
;
op
->
o_bd
=
&
cm
->
db
;
...
...
@@ -4676,7 +4676,7 @@ pcache_db_close(
thrctx
=
ldap_pvt_thread_pool_context
();
connection_fake_init
(
&
conn
,
&
opbuf
,
thrctx
);
connection_fake_init
2
(
&
conn
,
&
opbuf
,
thrctx
,
0
);
op
=
&
opbuf
.
ob_op
;
if
(
qm
->
templates
!=
NULL
)
{
...
...
servers/slapd/overlays/syncprov.c
View file @
2ced451d
...
...
@@ -2893,7 +2893,7 @@ syncprov_db_open(
}
thrctx
=
ldap_pvt_thread_pool_context
();
connection_fake_init
(
&
conn
,
&
opbuf
,
thrctx
);
connection_fake_init
2
(
&
conn
,
&
opbuf
,
thrctx
,
0
);
op
=
&
opbuf
.
ob_op
;
op
->
o_bd
=
be
;
op
->
o_dn
=
be
->
be_rootdn
;
...
...
@@ -2978,7 +2978,7 @@ syncprov_db_close(
void
*
thrctx
;
thrctx
=
ldap_pvt_thread_pool_context
();
connection_fake_init
(
&
conn
,
&
opbuf
,
thrctx
);
connection_fake_init
2
(
&
conn
,
&
opbuf
,
thrctx
,
0
);
op
=
&
opbuf
.
ob_op
;
op
->
o_bd
=
be
;
op
->
o_dn
=
be
->
be_rootdn
;
...
...
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