]> git.sur5r.net Git - openldap/blobdiff - servers/slapd/back-tcl/tcl_abandon.c
Free IDL_CACHE locks
[openldap] / servers / slapd / back-tcl / tcl_abandon.c
index f4d71c657707316eda4c2c4f50352b950e2fc49c..1be1ccbd9c600b7c433e28a324d4a7a838f4f296 100644 (file)
 
 int
 tcl_back_abandon (
-       Backend * be,
-       Connection * conn,
        Operation * op,
-       int msgid
+       SlapReply * rs
 )
 {
        char *results, *command;
        struct berval suf_tcl;
        int code, err = 0;
-       struct tclinfo *ti = (struct tclinfo *) be->be_private;
+       struct tclinfo *ti = (struct tclinfo *) op->o_bd->be_private;
 
        if (ti->ti_abandon.bv_len == 0) {
                return (-1);
        }
 
-       if (tcl_merge_bvlist(be->be_suffix, &suf_tcl) == NULL) {
+       if (tcl_merge_bvlist(op->o_bd->be_suffix, &suf_tcl) == NULL) {
                return (-1);
        }
 
@@ -41,7 +39,7 @@ tcl_back_abandon (
                + 80);
        sprintf (command, "%s ABANDON {%ld/%ld} {%s} {%ld/%d}",
                ti->ti_abandon.bv_val, op->o_connid, (long) op->o_msgid,
-               suf_tcl.bv_val, op->o_connid, msgid);
+               suf_tcl.bv_val, op->o_connid, op->oq_abandon.rs_msgid);
        Tcl_Free (suf_tcl.bv_val);
 
        ldap_pvt_thread_mutex_lock (&tcl_interpreter_mutex);
@@ -51,7 +49,7 @@ tcl_back_abandon (
        free (command);
 
        if (code != TCL_OK) {
-               err = LDAP_OPERATIONS_ERROR;
+               err = LDAP_OTHER;
                Debug (LDAP_DEBUG_SHELL, "tcl_abandon_error: %s\n", results,
                        0, 0);
        }