From: Hallvard Furuseth Date: Sat, 20 Feb 1999 08:15:21 +0000 (+0000) Subject: isblank() is nonstandard, use isspace() X-Git-Tag: OPENLDAP_SLAPD_BACK_LDAP~560 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=63be2a00b596568c07cf9732937054c5289ac8cf;p=openldap isblank() is nonstandard, use isspace() --- 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 ));