From 6bbeddada8aceec51f76a727448d88467ef6b037 Mon Sep 17 00:00:00 2001 From: Ian C Date: Tue, 19 Sep 2006 22:27:02 +0000 Subject: Fixed to allow spaces as delimiters. --- src/config.c | 4 ++-- 1 file 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) { -- cgit v1.2.3