From 22a4f361329ed4e303e2f1bdce9edf49e70970f3 Mon Sep 17 00:00:00 2001 From: Luke Bratch Date: Wed, 10 Jul 2019 19:09:59 +0100 Subject: Make setting configuration option "replayseconds" optional if "replaymode" != "time". --- functions.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'functions.c') diff --git a/functions.c b/functions.c index a67776f..8bbc213 100644 --- a/functions.c +++ b/functions.c @@ -1104,7 +1104,8 @@ int rehash(struct settings *settings, char *failuremsg) { // How many seconds of replay log should automatically be replayed - TODO - Can we do error checking on this? int oldreplayseconds = settings->replayseconds; settings->replayseconds = getconfint("replayseconds", settings->conffile); - if (errno == ECONFINT) { + // Don't worry if replaymode != "time" + if (errno == ECONFINT && strcmp(settings->replaymode, "time") == 0) { settings->replayseconds = oldreplayseconds; strcpy(failuremsg, "error getting 'replayseconds' from configuration file"); return 0; -- cgit v1.2.3