mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-11 06:43:09 -05:00
fix type issue
This commit is contained in:
parent
bdb661440b
commit
7efa22c2b7
1 changed files with 2 additions and 2 deletions
|
|
@ -460,10 +460,10 @@ backsql_get_attr_vals( void *v_at, void *v_bsi )
|
|||
oldcount = 0,
|
||||
res = 0;
|
||||
#ifdef BACKSQL_COUNTQUERY
|
||||
unsigned long count,
|
||||
countsize = sizeof( count ),
|
||||
unsigned count,
|
||||
j,
|
||||
append = 0;
|
||||
SQLLEN countsize = sizeof( count );
|
||||
Attribute *attr = NULL;
|
||||
|
||||
slap_mr_normalize_func *normfunc = NULL;
|
||||
|
|
|
|||
Loading…
Reference in a new issue