Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
openldap
OpenLDAP
Commits
f80127f0
Commit
f80127f0
authored
Jul 24, 2000
by
Kurt Zeilenga
Browse files
Ignore missing associated matching rule for now
parent
6c41d272
Changes
1
Hide whitespace changes
Inline
Side-by-side
servers/slapd/mr.c
View file @
f80127f0
...
...
@@ -176,11 +176,17 @@ register_matching_rule(
if
(
associated
!=
NULL
)
{
amr
=
mr_find
(
associated
);
Debug
(
LDAP_DEBUG_ANY
,
"register_matching_rule: could not locate "
"associated matching rule %s for %s
\n
"
,
associated
,
desc
,
0
);
#if 0
/* ignore for now */
if( amr == NULL ) {
Debug( LDAP_DEBUG_ANY, "register_matching_rule: could not locate "
"associated matching rule %s for %s\n",
associated, desc, 0 );
return -1;
}
#endif
return
-
1
;
}
mr
=
ldap_str2matchingrule
(
desc
,
&
code
,
&
err
,
LDAP_SCHEMA_ALLOW_ALL
);
...
...
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