mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
noop commit: cleanup 0 -> REP_RESULT in SlapReply
This commit is contained in:
parent
713886ec07
commit
15aa7c472a
@ -682,7 +682,7 @@ ldap_chain_search(
|
||||
* to be set once for all (correct?) */
|
||||
li.li_bvuri = bvuri;
|
||||
for ( ; !BER_BVISNULL( &ref[0] ); ref++ ) {
|
||||
SlapReply rs2 = { 0 };
|
||||
SlapReply rs2 = { REP_RESULT };
|
||||
LDAPURLDesc *srv;
|
||||
req_search_s save_oq_search = op->oq_search,
|
||||
tmp_oq_search = { 0 };
|
||||
|
@ -908,7 +908,7 @@ meta_back_get_candidate(
|
||||
|
||||
} else if ( candidate == META_TARGET_MULTIPLE ) {
|
||||
Operation op2 = *op;
|
||||
SlapReply rs2 = { 0 };
|
||||
SlapReply rs2 = { REP_RESULT };
|
||||
slap_callback cb2 = { 0 };
|
||||
int rc;
|
||||
|
||||
@ -1891,4 +1891,3 @@ meta_back_quarantine(
|
||||
done:;
|
||||
ldap_pvt_thread_mutex_unlock( &mt->mt_quarantine_mutex );
|
||||
}
|
||||
|
||||
|
@ -830,7 +830,7 @@ monitor_search2ndn(
|
||||
OperationBuffer opbuf;
|
||||
Operation *op;
|
||||
void *thrctx;
|
||||
SlapReply rs = { 0 };
|
||||
SlapReply rs = { REP_RESULT };
|
||||
slap_callback cb = { NULL, monitor_search2ndn_cb, NULL, NULL };
|
||||
int rc;
|
||||
|
||||
|
@ -334,7 +334,7 @@ backsql_tree_delete(
|
||||
{
|
||||
Operation op2 = *op;
|
||||
slap_callback sc = { 0 };
|
||||
SlapReply rs2 = { 0 };
|
||||
SlapReply rs2 = { REP_RESULT };
|
||||
backsql_tree_delete_t btd = { 0 };
|
||||
|
||||
int rc;
|
||||
|
@ -2513,7 +2513,7 @@ send_results:;
|
||||
#ifdef BACKSQL_SYNCPROV
|
||||
if ( op->o_sync ) {
|
||||
Operation op2 = *op;
|
||||
SlapReply rs2 = { 0 };
|
||||
SlapReply rs2 = { REP_RESULT };
|
||||
Entry *e = entry_alloc();
|
||||
slap_callback cb = { 0 };
|
||||
|
||||
|
@ -2423,7 +2423,7 @@ retry_add:;
|
||||
case LDAP_ALREADY_EXISTS:
|
||||
if ( retry ) {
|
||||
Operation op2 = *op;
|
||||
SlapReply rs2 = { 0 };
|
||||
SlapReply rs2 = { REP_RESULT };
|
||||
slap_callback cb2 = { 0 };
|
||||
|
||||
op2.o_bd = be;
|
||||
|
Loading…
Reference in New Issue
Block a user