mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
noop change: Silence signed vs unsigned warnings
This commit is contained in:
parent
6223282235
commit
1ecaeb3b18
@ -1054,7 +1054,7 @@ backend_check_restrictions(
|
||||
requires |= op->o_bd->be_requires;
|
||||
bssf = &op->o_bd->be_ssf_set.sss_ssf;
|
||||
fssf = &ssfs.sss_ssf;
|
||||
for ( i=0; i<sizeof(ssfs)/sizeof(slap_ssf_t); i++ ) {
|
||||
for ( i=0; i < (int)(sizeof(ssfs)/sizeof(slap_ssf_t)); i++ ) {
|
||||
if ( bssf[i] ) fssf[i] = bssf[i];
|
||||
}
|
||||
}
|
||||
|
@ -1821,7 +1821,8 @@ syncprov_op_response( Operation *op, SlapReply *rs )
|
||||
* that changed, and only one can be passed in the csn queue.
|
||||
*/
|
||||
Modifications *mod = op->orm_modlist;
|
||||
int i, j, sid;
|
||||
unsigned i;
|
||||
int j, sid;
|
||||
|
||||
for ( i=0; i<mod->sml_numvals; i++ ) {
|
||||
sid = slap_parse_csn_sid( &mod->sml_values[i] );
|
||||
|
Loading…
Reference in New Issue
Block a user