diff options
author | Ian C <ianc@noddybox.co.uk> | 2021-05-23 20:45:19 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2021-05-23 20:45:19 +0000 |
commit | 15d2a8724930bfb3d87f20b286391d4133d42d98 (patch) | |
tree | 339a39d4c78c6ee78946bdf952a2bcd4a4ca84f0 /src/config.c | |
parent | 6c1f2fec30886e845db47c14cd284103d9f55189 (diff) |
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) { |