]> git.sur5r.net Git - openldap/commitdiff
Include tab in LDAP_SPACE
authorKurt Zeilenga <kurt@openldap.org>
Fri, 30 Jun 2000 02:19:39 +0000 (02:19 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Fri, 30 Jun 2000 02:19:39 +0000 (02:19 +0000)
include/ldap_pvt.h

index 8b4f11d605f298c69dfbd5e2e55e1befbf48765b..e025e04e55d2c03a42ee15d97976242114f55566 100644 (file)
@@ -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' )