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
orbea -
OpenLDAP
Commits
21e49339
Commit
21e49339
authored
Jul 01, 2005
by
Howard Chu
Browse files
ITS#3820 fix olcReadOnly check
parent
c384e2ed
Changes
1
Hide whitespace changes
Inline
Side-by-side
servers/slapd/bconfig.c
View file @
21e49339
...
...
@@ -694,7 +694,8 @@ config_generic(ConfigArgs *c) {
if
(
!
c
->
rvalue_vals
)
rc
=
1
;
break
;
case
CFG_RO
:
c
->
value_int
=
(
c
->
be
->
be_restrictops
&
SLAP_RESTRICT_OP_WRITES
)
!=
0
;
c
->
value_int
=
(
c
->
be
->
be_restrictops
&
SLAP_RESTRICT_OP_WRITES
)
==
SLAP_RESTRICT_OP_WRITES
;
break
;
case
CFG_AZPOLICY
:
c
->
value_string
=
ch_strdup
(
slap_sasl_getpolicy
());
...
...
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