mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-26 01:29:59 -05:00
declarations must occur before instructions
This commit is contained in:
parent
c81161ed86
commit
2d8467d480
1 changed files with 2 additions and 1 deletions
|
|
@ -47,10 +47,11 @@ int passwd_extop(
|
|||
Operation op2;
|
||||
slap_callback cb = { NULL, slap_null_cb, NULL, NULL };
|
||||
slap_callback cb2 = { NULL, slap_replog_cb, NULL, NULL };
|
||||
cb2.sc_next = &cb;
|
||||
int i, nhash;
|
||||
char **hashes;
|
||||
|
||||
cb2.sc_next = &cb;
|
||||
|
||||
assert( ber_bvcmp( &slap_EXOP_MODIFY_PASSWD, &op->ore_reqoid ) == 0 );
|
||||
|
||||
if( op->o_dn.bv_len == 0 ) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue