commit 0cac1a2ba6f15f661fafdec568c73fae3cea9c4f parent fdd8935f592e0a97ff21f1fbe61f1e083f8b3e23 Author: Anselm R. Garbe <garbeam@wmii.de> Date: Thu, 8 Jun 2006 12:38:43 +0200 same fix (thx to 20h) Diffstat:
| libcext/tokenize.c | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libcext/tokenize.c b/libcext/tokenize.c @@ -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)