]> git.sur5r.net Git - openldap/commitdiff
dup is a global declaration on some platforms - avoid warning when
authorLuke Howard <lukeh@openldap.org>
Tue, 9 Nov 2004 05:39:09 +0000 (05:39 +0000)
committerLuke Howard <lukeh@openldap.org>
Tue, 9 Nov 2004 05:39:09 +0000 (05:39 +0000)
compiling with maximum error reporting

include/lber.h

index e712b291c776c22e3c7d1f47bd67ae7af698adf1..35b62102c690435bab8ccd0031145addb352dd0c 100644 (file)
@@ -584,11 +584,11 @@ ber_bvdup LDAP_P((
 
 LBER_F( struct berval * )
 ber_mem2bv LDAP_P((
-       LDAP_CONST char *, ber_len_t len, int dup, struct berval *bv));
+       LDAP_CONST char *, ber_len_t len, int duplicate, struct berval *bv));
 
 LBER_F( struct berval * )
 ber_str2bv LDAP_P((
-       LDAP_CONST char *, ber_len_t len, int dup, struct berval *bv));
+       LDAP_CONST char *, ber_len_t len, int duplicate, struct berval *bv));
 
 #define        ber_bvstr(a)    ((ber_str2bv)((a), 0, 0, NULL))
 #define        ber_bvstrdup(a) ((ber_str2bv)((a), 0, 1, NULL))