Skip to content
Snippets Groups Projects
Commit 63be2a00 authored by Hallvard Furuseth's avatar Hallvard Furuseth
Browse files

isblank() is nonstandard, use isspace()

parent 14705241
No related branches found
No related tags found
No related merge requests found
......@@ -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 ));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment