same fix (thx to 20h)

This commit is contained in:
Anselm R. Garbe 2006-06-08 12:38:43 +02:00
parent fdd8935f59
commit 0cac1a2ba6
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ cext_tokenize(char **result, unsigned int reslen, char *str, char delim)
if(!str)
return 0;
for(n = str; *n == ' '; n++);
for(n = str; *n == delim; n++);
p = n;
for(i = 0; *n != 0;) {
if(i == reslen)