From: Kurt Zeilenga Date: Fri, 30 Jun 2000 02:19:39 +0000 (+0000) Subject: Include tab in LDAP_SPACE X-Git-Tag: LDBM_PRE_GIANT_RWLOCK~2503 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=e82d2e042bc91b23476d1ca06eaa7b888afa7106;p=openldap Include tab in LDAP_SPACE --- diff --git a/include/ldap_pvt.h b/include/ldap_pvt.h index 8b4f11d605..e025e04e55 100644 --- a/include/ldap_pvt.h +++ b/include/ldap_pvt.h @@ -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' )