Skip to content
Snippets Groups Projects
Commit 2bd23df4 authored by Luke Howard's avatar Luke Howard
Browse files

dup is a global declaration on some platforms - avoid warning when

compiling with maximum error reporting
parent e0726c2b
No related branches found
No related tags found
No related merge requests found
......@@ -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))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment