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
1a314f3b
Commit
1a314f3b
authored
Mar 25, 2004
by
Howard Chu
Browse files
ITS
#3038
64bit compatibility (oops)
parent
3a468f5d
Changes
1
Hide whitespace changes
Inline
Side-by-side
servers/slapd/bind.c
View file @
1a314f3b
...
...
@@ -46,6 +46,7 @@ do_bind(
{
BerElement
*
ber
=
op
->
o_ber
;
ber_int_t
version
;
ber_tag_t
method
;
struct
berval
mech
=
{
0
,
NULL
};
struct
berval
dn
=
{
0
,
NULL
};
ber_tag_t
tag
;
...
...
@@ -106,7 +107,7 @@ do_bind(
* }
*/
tag
=
ber_scanf
(
ber
,
"{imt"
/*}*/
,
&
version
,
&
dn
,
&
op
->
orb_
method
);
tag
=
ber_scanf
(
ber
,
"{imt"
/*}*/
,
&
version
,
&
dn
,
&
method
);
if
(
tag
==
LBER_ERROR
)
{
#ifdef NEW_LOGGING
...
...
@@ -121,6 +122,7 @@ do_bind(
}
op
->
o_protocol
=
version
;
op
->
orb_method
=
method
;
if
(
op
->
orb_method
!=
LDAP_AUTH_SASL
)
{
tag
=
ber_scanf
(
ber
,
/*{*/
"m}"
,
&
op
->
orb_cred
);
...
...
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