diff options
author | Luke Bratch <luke@bratch.co.uk> | 2019-07-10 19:09:59 +0100 |
---|---|---|
committer | Luke Bratch <luke@bratch.co.uk> | 2019-07-10 19:09:59 +0100 |
commit | 22a4f361329ed4e303e2f1bdce9edf49e70970f3 (patch) | |
tree | ab666c6d15d0a380ee1a8395f0c1dc17e19bf719 /blabouncer.c | |
parent | f5778572b16fd7c5fa7f61166e05d3db1831069a (diff) |
Make setting configuration option "replayseconds" optional if "replaymode" != "time".
Diffstat (limited to 'blabouncer.c')
-rw-r--r-- | blabouncer.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/blabouncer.c b/blabouncer.c index 143b366..8f5afad 100644 --- a/blabouncer.c +++ b/blabouncer.c @@ -911,7 +911,8 @@ int main(int argc, char *argv[]) { // How many seconds of replay log should automatically be replayed - TODO - Can we do error checking on this? settings.replayseconds = getconfint("replayseconds", settings.conffile); - if (errno == ECONFINT) { + // Don't worry if replaymode != "time" + if (errno == ECONFINT && strcmp(settings.replaymode, "time") == 0) { printf("main(): error getting 'replayseconds' from configuration file.\n"); exit(1); } |