mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-31 20:19:34 -05:00
ber_scanf() returns unsigned long, not int
This commit is contained in:
parent
ee4ee470d5
commit
8761bbb6e9
1 changed files with 2 additions and 1 deletions
|
|
@ -33,7 +33,8 @@ do_bind(
|
|||
)
|
||||
{
|
||||
BerElement *ber = op->o_ber;
|
||||
int version, method, len, rc;
|
||||
int version, method, len;
|
||||
unsigned long rc;
|
||||
char *dn;
|
||||
struct berval cred;
|
||||
Backend *be;
|
||||
|
|
|
|||
Loading…
Reference in a new issue