]> git.sur5r.net Git - openldap/blobdiff - servers/slapd/back-tcl/tcl_modify.c
Don't use 'shtool mkln' as ln(1) replacement.
[openldap] / servers / slapd / back-tcl / tcl_modify.c
index 047a7fbd41f740cbd3dddf6505c83c755bfaad0f..00157bf3a1de101d02e4fcb56d1ef75eb9902d3a 100644 (file)
@@ -1,6 +1,5 @@
+/* $OpenLDAP$ */
 /* modify.c - tcl modify routines
- *
- * $Id: tcl_modify.c,v 1.4 1999/02/19 06:55:20 bcollins Exp $
  *
  * Copyright 1999, Ben Collins <bcollins@debian.org>, All rights reserved.
  *
@@ -22,7 +21,8 @@ tcl_back_modify (
        Backend * be,
        Connection * conn,
        Operation * op,
-       char *dn,
+       const char *dn,
+       const char *ndn,
        LDAPModList * modlist
 )
 {
@@ -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);
        }
 
@@ -110,7 +110,7 @@ tcl_back_modify (
 
        if (err != LDAP_SUCCESS)
                send_ldap_result (conn, op, err, NULL,
-                       "internal backend error");
+                       "internal backend error", NULL, NULL );
 
        free (results);
        return (err);