]> git.sur5r.net Git - openldap/blobdiff - servers/slapd/back-perl/modrdn.c
More ACL to dn="" bug fixing... and add test006-acl check
[openldap] / servers / slapd / back-perl / modrdn.c
index 9aef7d9ae3c7bf3509d21eccebf024143dc69dd8..32db575665b898aab01540d95a1e1b870dcd77b8 100644 (file)
@@ -1,6 +1,7 @@
 /* $OpenLDAP$ */
 /*
  *      Copyright 1999, John C. Quillan, All rights reserved.
+ *      Portions Copyright 2002, myinternet Limited. All rights reserved.
  *
  *      Redistribution and use in source and binary forms are permitted only
  *      as authorized by the OpenLDAP Public License.  A copy of this
 #include "portable.h"
 
 #include <stdio.h>
-/*     #include <ac/types.h>
-       #include <ac/socket.h>
-*/
+
+#include "slap.h"
+#ifdef HAVE_WIN32_ASPERL
+#include "asperl_undefs.h"
+#endif
 
 #include <EXTERN.h>
 #include <perl.h>
 
-#include "slap.h"
 #include "perl_back.h"
 
 int
@@ -69,7 +71,11 @@ perl_back_modrdn(
                }
                PUTBACK ;
 
+#ifdef PERL_IS_5_6
+               count = call_method("modrdn", G_SCALAR);
+#else
                count = perl_call_method("modrdn", G_SCALAR);
+#endif
 
                SPAGAIN ;
 
@@ -84,14 +90,8 @@ perl_back_modrdn(
 
        ldap_pvt_thread_mutex_unlock( &perl_interpreter_mutex );
        
-       if( return_code != 0 ) {
-               send_ldap_result( conn, op, LDAP_OPERATIONS_ERROR,
-                       NULL, NULL, NULL, NULL );
-
-       } else {
-               send_ldap_result( conn, op, LDAP_SUCCESS,
-                       NULL, NULL, NULL, NULL );
-       }
+       send_ldap_result( conn, op, return_code,
+               NULL, NULL, NULL, NULL );
 
        Debug( LDAP_DEBUG_ANY, "Perl MODRDN\n", 0, 0, 0 );
        return( 0 );