From e82d2e042bc91b23476d1ca06eaa7b888afa7106 Mon Sep 17 00:00:00 2001 From: Kurt Zeilenga Date: Fri, 30 Jun 2000 02:19:39 +0000 Subject: [PATCH] Include tab in LDAP_SPACE --- include/ldap_pvt.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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' ) -- 2.39.5