From: Ondřej Kuzník Date: Wed, 18 Jul 2018 08:16:11 +0000 (+0100) Subject: Do not require ac/string.h for lber_pvt.h X-Git-Url: https://git.sur5r.net/?p=openldap;a=commitdiff_plain Do not require ac/string.h for lber_pvt.h --- diff --git a/include/lber_pvt.h b/include/lber_pvt.h index fff5e85ffe..3767fa22dc 100644 --- a/include/lber_pvt.h +++ b/include/lber_pvt.h @@ -201,6 +201,10 @@ ber_bvarray_dup_x LDAP_P(( BerVarray *dst, BerVarray src, void *ctx )); (dst)->bv_val = (bv)->bv_val; \ } while (0) +#ifndef STRLENOF +#define STRLENOF(s) (sizeof(s)-1) +#endif + #define BER_BVC(s) { STRLENOF(s), (char *)(s) } #define BER_BVNULL { 0L, NULL } #define BER_BVZERO(bv) \