Skip to content
Snippets Groups Projects
Commit 933121a7 authored by Hallvard Furuseth's avatar Hallvard Furuseth
Browse files

'static' must come before 'const'.

parent 1fbbc118
No related branches found
No related tags found
No related merge requests found
......@@ -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 );
......
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