--- include/lber_pvt.h 2006/01/03 22:12:05 1.35 +++ include/lber_pvt.h 2007/01/02 19:00:55 1.37 @@ -1,7 +1,7 @@ -/* $OpenLDAP: pkg/ldap/include/lber_pvt.h,v 1.34 2005/11/14 14:41:08 hallvard Exp $ */ +/* $OpenLDAP: pkg/ldap/include/lber_pvt.h,v 1.36 2006/09/09 14:16:27 ando Exp $ */ /* This work is part of OpenLDAP Software . * - * Copyright 1998-2006 The OpenLDAP Foundation. + * Copyright 1998-2007 The OpenLDAP Foundation. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -172,26 +172,26 @@ ber_bvarray_add_x LDAP_P(( BerVarray *p, #define ber_bvrchr(bv,c) \ ((char *) memrchr( (bv)->bv_val, (c), (bv)->bv_len )) -#define ber_bvchr_right(dst,bv,c) \ +#define ber_bvchr_post(dst,bv,c) \ do { \ (dst)->bv_val = memchr( (bv)->bv_val, (c), (bv)->bv_len ); \ (dst)->bv_len = (dst)->bv_val ? (bv)->bv_len - ((dst)->bv_val - (bv)->bv_val) : 0; \ } while (0) -#define ber_bvchr_left(dst,bv,c) \ +#define ber_bvchr_pre(dst,bv,c) \ do { \ (dst)->bv_val = memchr( (bv)->bv_val, (c), (bv)->bv_len ); \ (dst)->bv_len = (dst)->bv_val ? ((dst)->bv_val - (bv)->bv_val) : (bv)->bv_len; \ (dst)->bv_val = (bv)->bv_val; \ } while (0) -#define ber_bvrchr_right(dst,bv,c) \ +#define ber_bvrchr_post(dst,bv,c) \ do { \ (dst)->bv_val = memrchr( (bv)->bv_val, (c), (bv)->bv_len ); \ (dst)->bv_len = (dst)->bv_val ? (bv)->bv_len - ((dst)->bv_val - (bv)->bv_val) : 0; \ } while (0) -#define ber_bvrchr_left(dst,bv,c) \ +#define ber_bvrchr_pre(dst,bv,c) \ do { \ (dst)->bv_val = memrchr( (bv)->bv_val, (c), (bv)->bv_len ); \ (dst)->bv_len = (dst)->bv_val ? ((dst)->bv_val - (bv)->bv_val) : (bv)->bv_len; \