From d4160947d9e7c17de32f950212b6a5a5e536bf27 Mon Sep 17 00:00:00 2001 From: David Lamparter Date: Thu, 24 Jan 2019 18:59:03 +0100 Subject: [PATCH] lib: don't disable "log file" on "log syslog" FRR log targets are independent, so "log syslog" must not disable "log file" output. Fixes: #3551 Fixes: 0204baa87630b210c71d9ae0e2569cff0fb0539b Signed-off-by: David Lamparter --- lib/command.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/command.c b/lib/command.c index cae7054467..06879f6854 100644 --- a/lib/command.c +++ b/lib/command.c @@ -2515,8 +2515,6 @@ DEFUN (config_log_syslog, { int idx_log_levels = 2; - disable_log_file(); - if (argc == 3) { int level; if ((level = level_match(argv[idx_log_levels]->arg))