aboutsummaryrefslogtreecommitdiff
path: root/test/bin/json_process.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/bin/json_process.c')
-rw-r--r--test/bin/json_process.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/test/bin/json_process.c b/test/bin/json_process.c
index 3fa926b..965fa6b 100644
--- a/test/bin/json_process.c
+++ b/test/bin/json_process.c
@@ -80,11 +80,10 @@ static char *loadfile(FILE *file) {
static void read_conf(FILE *conffile) {
char *buffer, *line, *val;
+ conf.have_hashseed = 0;
buffer = loadfile(conffile);
for (line = strtok(buffer, "\r\n"); line; line = strtok(NULL, "\r\n")) {
- if (!strncmp(line, "export ", 7))
- continue;
val = strchr(line, '=');
if (!val) {
printf("invalid configuration line\n");
@@ -109,8 +108,6 @@ static void read_conf(FILE *conffile) {
if (!strcmp(line, "HASHSEED")) {
conf.have_hashseed = 1;
conf.hashseed = atoi(val);
- } else {
- conf.have_hashseed = 0;
}
}