From 63be2a00b596568c07cf9732937054c5289ac8cf Mon Sep 17 00:00:00 2001
From: Hallvard Furuseth <hallvard@openldap.org>
Date: Sat, 20 Feb 1999 08:15:21 +0000
Subject: [PATCH] isblank() is nonstandard, use isspace()

---
 tests/slapd-addel.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/slapd-addel.c b/tests/slapd-addel.c
index 03b66ed1e4..e99fbf00fe 100644
--- a/tests/slapd-addel.c
+++ b/tests/slapd-addel.c
@@ -207,7 +207,7 @@ get_add_entry( char *filename, LDAPMod ***mods )
 			if ( !( value = strchr( line, ':' ))) break;
 
 			*value++ = '\0'; 
-			while ( *value && isblank( *value )) value++;
+			while ( *value && isspace( *value )) value++;
 
 			addmodifyop( mods, LDAP_MOD_ADD, line, value, strlen( value ));
 
-- 
GitLab