From d199f1369bcdecb2a787b097cbe6555790aacd8c Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Tue, 16 Feb 2021 15:38:36 +0200 Subject: [PATCH] lib-master: Reset master_service.config_path_from_master if -c parameter is used This doesn't fix anything currently, but clarifies the behavior and is needed by the following commit. --- src/lib-master/master-service.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib-master/master-service.c b/src/lib-master/master-service.c index f86aaa2667..90ca40f744 100644 --- a/src/lib-master/master-service.c +++ b/src/lib-master/master-service.c @@ -592,6 +592,7 @@ bool master_service_parse_option(struct master_service *service, i_free(service->config_path); service->config_path = i_strdup(arg); service->config_path_changed_with_param = TRUE; + service->config_path_from_master = FALSE; break; case 'i': if (!get_instance_config(arg, &path)) -- 2.47.3