X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=servers%2Fslapd%2Fback-perl%2Fcompare.c;h=51e66f29b85309e48b72f653470d9a92e6c175f6;hb=3c7bbd05cf91687913147b617ee36226e6e7ebf2;hp=e03c486cd55d989560df1cf3e8d9da0e5867f04e;hpb=8357a8b66e14527a544123dc8406dba7f641f7a5;p=openldap diff --git a/servers/slapd/back-perl/compare.c b/servers/slapd/back-perl/compare.c index e03c486cd5..51e66f29b8 100644 --- a/servers/slapd/back-perl/compare.c +++ b/servers/slapd/back-perl/compare.c @@ -1,27 +1,22 @@ /* $OpenLDAP$ */ -/* - * Copyright 1999, John C. Quillan, All rights reserved. - * Portions Copyright 2002, myinternet Limited. All rights reserved. +/* This work is part of OpenLDAP Software . * - * Redistribution and use in source and binary forms are permitted only - * as authorized by the OpenLDAP Public License. A copy of this - * license is available at http://www.OpenLDAP.org/license.html or - * in file LICENSE in the top-level directory of the distribution. + * Copyright 1999-2013 The OpenLDAP Foundation. + * Portions Copyright 1999 John C. Quillan. + * Portions Copyright 2002 myinternet Limited. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted only as authorized by the OpenLDAP + * Public License. + * + * A copy of this license is available in file LICENSE in the + * top-level directory of the distribution or, alternatively, at + * . */ -#include "portable.h" - -#include - -#include "slap.h" -#ifdef HAVE_WIN32_ASPERL -#include "asperl_undefs.h" -#endif - -#include -#include - #include "perl_back.h" +#include "lutil.h" /********************************************************** * @@ -34,18 +29,20 @@ perl_back_compare( Operation *op, SlapReply *rs ) { - int count; - char *avastr, *ptr; + int count, avalen; + char *avastr; PerlBackend *perl_back = (PerlBackend *)op->o_bd->be_private; - avastr = ch_malloc( op->orc_ava->aa_desc->ad_cname.bv_len + 1 + - op->orc_ava->aa_value.bv_len + 1 ); - + avalen = op->orc_ava->aa_desc->ad_cname.bv_len + 1 + + op->orc_ava->aa_value.bv_len; + avastr = ch_malloc( avalen + 1 ); + lutil_strcopy( lutil_strcopy( lutil_strcopy( avastr, op->orc_ava->aa_desc->ad_cname.bv_val ), "=" ), op->orc_ava->aa_value.bv_val ); + PERL_SET_CONTEXT( PERL_INTERPRETER ); ldap_pvt_thread_mutex_lock( &perl_interpreter_mutex ); { @@ -53,15 +50,11 @@ perl_back_compare( PUSHMARK(sp); XPUSHs( perl_back->pb_obj_ref ); - XPUSHs(sv_2mortal(newSVpv( op->o_req_dn.bv_val , 0))); - XPUSHs(sv_2mortal(newSVpv( avastr , 0))); + XPUSHs(sv_2mortal(newSVpv( op->o_req_dn.bv_val , op->o_req_dn.bv_len))); + XPUSHs(sv_2mortal(newSVpv( avastr , avalen))); PUTBACK; -#ifdef PERL_IS_5_6 count = call_method("compare", G_SCALAR); -#else - count = perl_call_method("compare", G_SCALAR); -#endif SPAGAIN;