From a9b7284ba2b8c4dbafe8ce0409963d028d546c19 Mon Sep 17 00:00:00 2001 From: Martin Lund Date: Thu, 28 Jul 2022 21:21:04 +0200 Subject: [PATCH] Revert "Enable log feature when using --log-filename" This reverts commit c3116b2b565d1a202f74a62f664d1d83c7f6ac84. On second thought, this is less appropriate when using the configuration file. We may want to define the log filename in config file but not necessarily enable log feature. --- src/options.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/options.c b/src/options.c index b5e6f71..7d52028 100644 --- a/src/options.c +++ b/src/options.c @@ -371,7 +371,6 @@ void options_parse(int argc, char *argv[]) break; case OPT_LOG_FILE: - option.log = true; option.log_filename = optarg; break;