diff options
Diffstat (limited to 'functions.c')
-rw-r--r-- | functions.c | 3 |
1 files changed, 2 insertions, 1 deletions
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; |