diff options
author | Ian C <ianc@noddybox.co.uk> | 2006-09-19 22:27:02 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2006-09-19 22:27:02 +0000 |
commit | 6bbeddada8aceec51f76a727448d88467ef6b037 (patch) | |
tree | ba8383dc2bcd5953fe065d16fe5f683cd66536ca | |
parent | e527bd7053de5ba035891143dbdab7b765530eb7 (diff) |
Fixed to allow spaces as delimiters.
-rw-r--r-- | src/config.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/config.c b/src/config.c index 0614c64..2266f6a 100644 --- a/src/config.c +++ b/src/config.c @@ -89,8 +89,8 @@ static void Parse(FILE *fp) char *t1=NULL; char *t2=NULL; - t1=strtok(buff,"\t"); - t2=strtok(NULL,"\t"); + t1=strtok(buff," \t"); + t2=strtok(NULL," \t"); if (t2) { |