]> git.sur5r.net Git - openldap/blobdiff - servers/slapd/back-perl/add.c
More ACL to dn="" bug fixing... and add test006-acl check
[openldap] / servers / slapd / back-perl / add.c
index 83509188d668bd6df6adc1918f2aa73c5266a2a8..c4a54ef5fcd8c26a0f13d269fa6987fff54456a4 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
@@ -47,7 +49,11 @@ perl_back_add(
 
                PUTBACK;
 
+#ifdef PERL_IS_5_6
+               count = call_method("add", G_SCALAR);
+#else
                count = perl_call_method("add", G_SCALAR);
+#endif
 
                SPAGAIN;
 
@@ -63,14 +69,8 @@ perl_back_add(
        ldap_pvt_thread_mutex_unlock( &entry2str_mutex );
        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 ADD\n", 0, 0, 0 );
        return( 0 );