]> git.ipfire.org Git - thirdparty/openldap.git/commitdiff
Use a specific sr_type for intermediate Glue results
authorHoward Chu <hyc@openldap.org>
Mon, 18 Dec 2006 19:46:40 +0000 (19:46 +0000)
committerHoward Chu <hyc@openldap.org>
Mon, 18 Dec 2006 19:46:40 +0000 (19:46 +0000)
servers/slapd/backglue.c
servers/slapd/slap.h

index 3c7cfc63219576403f05d570340feef888fb4749..a9f7c2292b53eb4f10603e95335fc3c147d6e083 100644 (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;
 }
index e7d3b5a88a5a20f681a05d2199bebbffc4871dbe..36029c679abc73bf2a8187668daf0956b1bac9c3 100644 (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 {