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
Nadezhda Ivanova
OpenLDAP
Commits
07e93b1c
Commit
07e93b1c
authored
Mar 06, 2003
by
Kurt Zeilenga
Browse files
Fix msgid bug
parent
01e6bc18
Changes
1
Hide whitespace changes
Inline
Side-by-side
libraries/libldap/kbind.c
View file @
07e93b1c
...
...
@@ -123,7 +123,7 @@ ldap_kerberos_bind1_s( LDAP *ld, LDAP_CONST char *dn )
return
(
ld
->
ld_errno
);
/* wait for a result */
if
(
ldap_result
(
ld
,
ld
->
ld_
msgid
,
1
,
(
struct
timeval
*
)
0
,
&
res
)
if
(
ldap_result
(
ld
,
msgid
,
1
,
(
struct
timeval
*
)
0
,
&
res
)
==
-
1
)
{
return
(
ld
->
ld_errno
);
/* ldap_result sets ld_errno */
}
...
...
@@ -209,7 +209,7 @@ ldap_kerberos_bind2_s( LDAP *ld, LDAP_CONST char *dn )
return
(
ld
->
ld_errno
);
/* wait for a result */
if
(
ldap_result
(
ld
,
ld
->
ld_
msgid
,
1
,
(
struct
timeval
*
)
0
,
&
res
)
if
(
ldap_result
(
ld
,
msgid
,
1
,
(
struct
timeval
*
)
0
,
&
res
)
==
-
1
)
{
return
(
ld
->
ld_errno
);
/* ldap_result sets ld_errno */
}
...
...
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