Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Joe Martin
OpenLDAP
Commits
4845ef23
Commit
4845ef23
authored
Jan 10, 2007
by
Howard Chu
Browse files
ITS#4648 ffrom HEAD
parent
5347d336
Changes
1
Hide whitespace changes
Inline
Side-by-side
libraries/libldap/filter.c
View file @
4845ef23
...
...
@@ -425,6 +425,10 @@ ldap_pvt_put_filter( BerElement *ber, const char *str_in )
parens
--
;
break
;
case
'('
:
rc
=
-
1
;
goto
done
;
default:
Debug
(
LDAP_DEBUG_TRACE
,
"put_filter: simple
\n
"
,
0
,
0
,
0
);
...
...
@@ -497,9 +501,11 @@ ldap_pvt_put_filter( BerElement *ber, const char *str_in )
str
=
next
;
break
;
}
if
(
!
parens
)
break
;
}
rc
=
parens
?
-
1
:
0
;
rc
=
(
parens
||
*
str
)
?
-
1
:
0
;
done:
LDAP_FREE
(
freeme
);
...
...
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