mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-05 22:50:51 -05:00
Add sets to NT build, remove LINT
This commit is contained in:
parent
af611de371
commit
1566454e6e
3 changed files with 16 additions and 2 deletions
|
|
@ -312,6 +312,14 @@ SOURCE=.\search.c
|
|||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\sets.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\sets.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\slap.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
|
|
|||
|
|
@ -4,9 +4,12 @@
|
|||
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
||||
*/
|
||||
|
||||
#include "portable.h"
|
||||
#include <ac/string.h>
|
||||
#include "portable.h"
|
||||
|
||||
#include <stdio.h>
|
||||
#include <ac/string.h>
|
||||
|
||||
#include "slap.h"
|
||||
#include "sets.h"
|
||||
|
||||
static char **set_join (char **lset, int op, char **rset);
|
||||
|
|
|
|||
|
|
@ -78,6 +78,9 @@ LDAP_BEGIN_DECL
|
|||
#define ASCII_DIGIT(c) ( (c) >= '0' && (c) <= '9' )
|
||||
#define ASCII_ALNUM(c) ( ASCII_ALPHA(c) || ASCII_DIGIT(c) )
|
||||
|
||||
#define ASCII_PRINTABLE(c) ( (c) >= ' ' && (c) <= '~' )
|
||||
#define FILTER_ESCAPE(c) ( (c) == '\\' || (c) == '(' || (c) == ')' || !ASCII_PRINTABLE(c) )
|
||||
|
||||
#define DN_SEPARATOR(c) ((c) == ',' || (c) == ';')
|
||||
#define RDN_SEPARATOR(c) ((c) == ',' || (c) == ';' || (c) == '+')
|
||||
#define RDN_NEEDSESCAPE(c) ((c) == '\\' || (c) == '"')
|
||||
|
|
|
|||
Loading…
Reference in a new issue