]> git.sur5r.net Git - openldap/blobdiff - servers/slapd/back-tcl/tcl_modify.c
Modified to use libtool's ltdl instead of gmodule
[openldap] / servers / slapd / back-tcl / tcl_modify.c
index 2bed7731e36e0fff4458c7f866b982fd7bc0c65f..d82a4bbd2558fc58a72093965751ba4687977fbf 100644 (file)
@@ -1,6 +1,6 @@
 /* modify.c - tcl modify routines
  *
- * $Id: tcl_modify.c,v 1.2 1999/02/17 01:05:28 bcollins Exp $
+ * $Id: tcl_modify.c,v 1.6 1999/07/16 00:45:52 kdz Exp $
  *
  * Copyright 1999, Ben Collins <bcollins@debian.org>, All rights reserved.
  *
@@ -32,7 +32,7 @@ tcl_back_modify (
 
        if (ti->ti_modify == NULL) {
                send_ldap_result (conn, op, LDAP_UNWILLING_TO_PERFORM, NULL,
-                       "modify not implemented");
+                       "modify not implemented", NULL, NULL );
                return (-1);
        }
 
@@ -96,13 +96,13 @@ tcl_back_modify (
 
        ldap_pvt_thread_mutex_lock (&tcl_interpreter_mutex);
        code = Tcl_GlobalEval (ti->ti_ii->interp, command);
-       results = (char *) strdup (ti->ti_ii->interp->result);
+       results = (char *) ch_strdup (ti->ti_ii->interp->result);
        ldap_pvt_thread_mutex_unlock (&tcl_interpreter_mutex);
        free (command);
 
        if (code != TCL_OK) {
                err = LDAP_OPERATIONS_ERROR;
-               Debug (LDAP_DEBUG_ANY, "tcl_modify_error: %s\n", results,
+               Debug (LDAP_DEBUG_SHELL, "tcl_modify_error: %s\n", results,
                        0, 0);
        } else {
                interp_send_results (be, conn, op, results, NULL, 0);
@@ -110,8 +110,8 @@ tcl_back_modify (
 
        if (err != LDAP_SUCCESS)
                send_ldap_result (conn, op, err, NULL,
-                       "internal backend error");
+                       "internal backend error", NULL, NULL );
 
-       free(results);
+       free (results);
        return (err);
 }