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
16f2a29c
Commit
16f2a29c
authored
Jun 28, 2000
by
Mark Valence
Browse files
Fix negated tests in IA5StringNormalize and numericStringNormalize.
parent
11ccf961
Changes
1
Hide whitespace changes
Inline
Side-by-side
servers/slapd/schema_init.c
View file @
16f2a29c
...
...
@@ -534,7 +534,7 @@ IA5StringNormalize(
p
++
;
}
if
(
*
p
!
=
'\0'
)
{
if
(
*
p
=
=
'\0'
)
{
ch_free
(
newval
);
return
LDAP_INVALID_SYNTAX
;
}
...
...
@@ -1112,7 +1112,7 @@ numericStringNormalize(
p
++
;
}
if
(
*
p
!
=
'\0'
)
{
if
(
*
p
=
=
'\0'
)
{
ch_free
(
newval
);
return
LDAP_INVALID_SYNTAX
;
}
...
...
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