]> git.sur5r.net Git - openldap/blobdiff - servers/slapd/back-perl/modrdn.c
Removed unnecessary definition that is already in core.schema.
[openldap] / servers / slapd / back-perl / modrdn.c
index 32d9433af6cce16181b32923ae9a5742422c2caa..11188290993c0535fd441ccef6c167cd7707c0d0 100644 (file)
@@ -7,6 +7,19 @@
  *      in file LICENSE in the top-level directory of the distribution.
  */
 
+/*
+ * LDAP v3 newSuperior support.
+ *
+ * Copyright 1999, Juan C. Gomez, All rights reserved.
+ * This software is not subject to any license of Silicon Graphics 
+ * Inc. or Purdue University.
+ *
+ * Redistribution and use in source and binary forms are permitted
+ * without restriction or fee of any kind as long as this notice
+ * is preserved.
+ *
+ */
+
 #include "portable.h"
 
 #include <stdio.h>
@@ -27,7 +40,8 @@ perl_back_modrdn(
        Operation       *op,
        char    *dn,
        char    *newrdn,
-       int             deleteoldrdn
+       int             deleteoldrdn,
+       char    *newSuperior
 )
 {
        int len;
@@ -36,16 +50,19 @@ perl_back_modrdn(
 
        PerlBackend *perl_back = (PerlBackend *) be->be_private;
 
-       pthread_mutex_lock( &perl_interpreter_mutex );  
+       ldap_pvt_thread_mutex_lock( &perl_interpreter_mutex );  
 
        {
                dSP; ENTER; SAVETMPS;
-
+               
                PUSHMARK(sp) ;
                XPUSHs( perl_back->pb_obj_ref );
                XPUSHs(sv_2mortal(newSVpv( dn , 0 )));
                XPUSHs(sv_2mortal(newSVpv( newrdn , 0 )));
                XPUSHs(sv_2mortal(newSViv( deleteoldrdn )));
+               if ( newSuperior != NULL ) {
+                       XPUSHs(sv_2mortal(newSVpv( newSuperior , 0 )));
+               }
                PUTBACK ;
 
                count = perl_call_method("modrdn", G_SCALAR);
@@ -61,8 +78,8 @@ perl_back_modrdn(
                PUTBACK; FREETMPS; LEAVE ;
        }
 
-       pthread_mutex_unlock( &perl_interpreter_mutex );
-
+       ldap_pvt_thread_mutex_unlock( &perl_interpreter_mutex );
+       
        if( return_code != 0 ) {
                send_ldap_result( conn, op, LDAP_OPERATIONS_ERROR, "", "" );