make dc const

This commit is contained in:
Kurt Zeilenga 2002-08-17 19:59:35 +00:00
parent 472484725f
commit 678d686017

View file

@ -43,8 +43,8 @@ int ldap_dn2domain(
LDAPRDN *rdn = NULL;
LDAPAVA *ava = NULL;
struct berval domain = { 0, NULL };
static struct berval DC = BER_BVC("DC");
static struct berval DCOID = BER_BVC("0.9.2342.19200300.100.1.25");
const static struct berval DC = BER_BVC("DC");
const static struct berval DCOID = BER_BVC("0.9.2342.19200300.100.1.25");
assert( dn_in != NULL );
assert( domainp != NULL );