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
Joe Martin
OpenLDAP
Commits
7a7b72fd
Commit
7a7b72fd
authored
Jun 08, 2009
by
Quanah Gibson-Mount
Browse files
ITS#6162
parent
40f63f62
Changes
2
Show whitespace changes
Inline
Side-by-side
CHANGES
View file @
7a7b72fd
...
...
@@ -19,6 +19,7 @@ OpenLDAP 2.4.17 Engineering
Fixed slapd moduleload with static backends and modules (ITS#6016)
Fixed slapd normalization of updated schema attributes (ITS#5540)
Fixed slapd olcLimits handling (ITS#6159)
Fixed slapd olcLogLevel with hex levels (ITS#6162)
Fixed slapd pagedresults stacked control with overlays (ITS#6056)
Fixed slapd password-hash incorrect limit on arg length (ITS#6139)
Fixed slapd readonly restrictions (ITS#6109)
...
...
servers/slapd/bconfig.c
View file @
7a7b72fd
...
...
@@ -2927,7 +2927,7 @@ config_loglevel(ConfigArgs *c) {
int
level
;
if
(
isdigit
((
unsigned
char
)
c
->
argv
[
i
][
0
])
||
c
->
argv
[
i
][
0
]
==
'-'
)
{
if
(
lutil_atoi
(
&
level
,
c
->
argv
[
i
]
)
!=
0
)
{
if
(
lutil_atoi
x
(
&
level
,
c
->
argv
[
i
]
,
0
)
!=
0
)
{
snprintf
(
c
->
cr_msg
,
sizeof
(
c
->
cr_msg
),
"<%s> unable to parse level"
,
c
->
argv
[
0
]
);
Debug
(
LDAP_DEBUG_ANY
,
"%s: %s
\"
%s
\"\n
"
,
c
->
log
,
c
->
cr_msg
,
c
->
argv
[
i
]);
...
...
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