mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-20 22:59:34 -05:00
Include tab in LDAP_SPACE
This commit is contained in:
parent
854b6d1839
commit
e82d2e042b
1 changed files with 1 additions and 1 deletions
|
|
@ -99,7 +99,7 @@ LDAP_F (int) ldap_pvt_unhex( int c );
|
|||
/* these macros assume 'x' is an ASCII x */
|
||||
#define LDAP_DNSEPARATOR(c) ((c) == ',' || (c) == ';')
|
||||
#define LDAP_SEPARATOR(c) ((c) == ',' || (c) == ';' || (c) == '+')
|
||||
#define LDAP_SPACE(c) ((c) == ' ' || (c) == '\n')
|
||||
#define LDAP_SPACE(c) ((c) == ' ' || (c) == '\t' || (c) == '\n')
|
||||
|
||||
#define LDAP_LOWER(c) ( (c) >= 'a' && (c) <= 'z' )
|
||||
#define LDAP_UPPER(c) ( (c) >= 'A' && (c) <= 'Z' )
|
||||
|
|
|
|||
Loading…
Reference in a new issue