Use a specific sr_type for intermediate Glue results

This commit is contained in:
Howard Chu 2006-12-18 19:46:40 +00:00
parent 8b49d50e92
commit 8b457119ac
2 changed files with 3 additions and 2 deletions

View File

@ -166,7 +166,7 @@ glue_op_response ( Operation *op, SlapReply *rs )
gs->ctrls = newctrls;
}
/* This is not a final result */
rs->sr_type = REP_INTERMEDIATE;
rs->sr_type = REP_GLUE_RESULT;
}
return 0;
}

View File

@ -1961,7 +1961,8 @@ typedef enum slap_reply_e {
REP_EXTENDED,
REP_SEARCH,
REP_SEARCHREF,
REP_INTERMEDIATE
REP_INTERMEDIATE,
REP_GLUE_RESULT
} slap_reply_t;
typedef struct rep_sasl_s {