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
Tero Saarni
OpenLDAP
Commits
4f72b1a1
Commit
4f72b1a1
authored
Jul 22, 2009
by
Quanah Gibson-Mount
Browse files
ITS#6214
parent
0325bc4f
Changes
4
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
4f72b1a1
...
...
@@ -3,6 +3,7 @@ OpenLDAP 2.4 Change Log
OpenLDAP 2.4.18 Engineering
Fixed slapd incorrectly applying writetimeout when not set (ITS#6220)
Fixed slapd subordinate needs a suffix (ITS#6216)
Fixed slapd tools to properly close database (ITS#6214)
Fixed slapd-ndb startup (ITS#6203)
Build Environment
Fixed test056-monitor with custom ports (ITS#6213)
...
...
servers/slapd/slapacl.c
View file @
4f72b1a1
...
...
@@ -73,6 +73,7 @@ slapacl( int argc, char **argv )
char
*
attr
=
NULL
;
int
doclose
=
0
;
BackendDB
*
bd
;
void
*
thrctx
;
slap_tool_init
(
progname
,
SLAPACL
,
argc
,
argv
);
...
...
@@ -96,7 +97,8 @@ slapacl( int argc, char **argv )
argv
=
&
argv
[
optind
];
argc
-=
optind
;
connection_fake_init
(
&
conn
,
&
opbuf
,
&
conn
);
thrctx
=
ldap_pvt_thread_pool_context
();
connection_fake_init
(
&
conn
,
&
opbuf
,
thrctx
);
op
=
&
opbuf
.
ob_op
;
op
->
o_tmpmemctx
=
NULL
;
...
...
servers/slapd/slapauth.c
View file @
4f72b1a1
...
...
@@ -83,13 +83,15 @@ slapauth( int argc, char **argv )
Connection
conn
=
{
0
};
OperationBuffer
opbuf
;
Operation
*
op
;
void
*
thrctx
;
slap_tool_init
(
progname
,
SLAPAUTH
,
argc
,
argv
);
argv
=
&
argv
[
optind
];
argc
-=
optind
;
connection_fake_init
(
&
conn
,
&
opbuf
,
&
conn
);
thrctx
=
ldap_pvt_thread_pool_context
();
connection_fake_init
(
&
conn
,
&
opbuf
,
thrctx
);
op
=
&
opbuf
.
ob_op
;
conn
.
c_sasl_bind_mech
=
mech
;
...
...
servers/slapd/slapschema.c
View file @
4f72b1a1
...
...
@@ -49,6 +49,7 @@ slapschema( int argc, char **argv )
Connection
conn
=
{
0
};
OperationBuffer
opbuf
;
Operation
*
op
=
NULL
;
void
*
thrctx
;
slap_tool_init
(
progname
,
SLAPCAT
,
argc
,
argv
);
...
...
@@ -78,7 +79,8 @@ slapschema( int argc, char **argv )
exit
(
EXIT_FAILURE
);
}
connection_fake_init
(
&
conn
,
&
opbuf
,
&
conn
);
thrctx
=
ldap_pvt_thread_pool_context
();
connection_fake_init
(
&
conn
,
&
opbuf
,
thrctx
);
op
=
&
opbuf
.
ob_op
;
op
->
o_tmpmemctx
=
NULL
;
op
->
o_bd
=
be
;
...
...
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