From: Quanah Gibson-Mount Date: Tue, 24 Nov 2009 06:50:11 +0000 (+0000) Subject: Fix change in variable name between HEAD and RE24 X-Git-Tag: OPENLDAP_REL_ENG_2_4_20~2 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=86bc7b1fcbe45a9f9d807813385385142af94fdc;p=openldap Fix change in variable name between HEAD and RE24 --- diff --git a/servers/slapd/overlays/accesslog.c b/servers/slapd/overlays/accesslog.c index 1757a93097..06453b4895 100644 --- a/servers/slapd/overlays/accesslog.c +++ b/servers/slapd/overlays/accesslog.c @@ -582,8 +582,8 @@ log_old_lookup( Operation *op, SlapReply *rs ) if ( a ) { ber_len_t len = a->a_nvals[0].bv_len; /* Paranoid len check, normalized CSNs are always the same length */ - if ( len > LDAP_PVT_CSNSTR_BUFSIZE ) - len = LDAP_PVT_CSNSTR_BUFSIZE; + if ( len > LDAP_LUTIL_CSNSTR_BUFSIZE ) + len = LDAP_LUTIL_CSNSTR_BUFSIZE; if ( memcmp( a->a_nvals[0].bv_val, pd->csn.bv_val, len ) > 0 ) { AC_MEMCPY( pd->csn.bv_val, a->a_nvals[0].bv_val, len ); pd->csn.bv_len = len;