mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-04 06:01:23 -05:00
temporary variable erroneously inside #ifdef (ITS#1503)
This commit is contained in:
parent
f021404b41
commit
d71888c0aa
2 changed files with 2 additions and 2 deletions
|
|
@ -160,8 +160,8 @@ do_delete(
|
|||
*/
|
||||
if ( be->be_delete ) {
|
||||
/* do the update here */
|
||||
#ifndef SLAPD_MULTIMASTER
|
||||
int repl_user = be_isupdate( be, op->o_ndn );
|
||||
#ifndef SLAPD_MULTIMASTER
|
||||
if ( be->be_update_ndn == NULL || repl_user )
|
||||
#endif
|
||||
{
|
||||
|
|
|
|||
|
|
@ -305,8 +305,8 @@ do_modrdn(
|
|||
*/
|
||||
if ( be->be_modrdn ) {
|
||||
/* do the update here */
|
||||
#ifndef SLAPD_MULTIMASTER
|
||||
int repl_user = be_isupdate( be, op->o_ndn );
|
||||
#ifndef SLAPD_MULTIMASTER
|
||||
if ( be->be_update_ndn == NULL || repl_user )
|
||||
#endif
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue