'static' must come before 'const'.

This commit is contained in:
Hallvard Furuseth 2003-01-19 13:35:53 +00:00
parent 1fbbc11811
commit 933121a7d9

View file

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