diff options
Diffstat (limited to 'src/config.c')
-rw-r--r-- | src/config.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/config.c b/src/config.c index ba3db5b..4d92d70 100644 --- a/src/config.c +++ b/src/config.c @@ -23,16 +23,12 @@ Config file */ -static const char ident[]="$Id$"; - #include <stdlib.h> #include <stdio.h> #include <string.h> #include "exit.h" #include "config.h" -static const char ident_h[]=ESPEC_CONFIG_H; - #ifndef TRUE #define TRUE 1 #endif @@ -90,8 +86,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) { |