mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-22 07:39:35 -05:00
Error in exclusion set macros
This commit is contained in:
parent
7733169933
commit
9705dcfcd6
1 changed files with 2 additions and 2 deletions
|
|
@ -112,8 +112,8 @@ static unsigned long decomps_size;
|
||||||
/*
|
/*
|
||||||
* Composition exclusion table stuff.
|
* Composition exclusion table stuff.
|
||||||
*/
|
*/
|
||||||
#define COMPEX_SET(c) (compexs[(c) >> 15] |= (1 << ((c) & 31)))
|
#define COMPEX_SET(c) (compexs[(c) >> 5] |= (1 << ((c) & 31)))
|
||||||
#define COMPEX_TEST(c) (compexs[(c) >> 15] & (1 << ((c) & 31)))
|
#define COMPEX_TEST(c) (compexs[(c) >> 5] & (1 << ((c) & 31)))
|
||||||
static unsigned long compexs[2048];
|
static unsigned long compexs[2048];
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue