diff options
author | Christian Hopps <chopps@labn.net> | 2023-03-31 18:34:49 +0200 |
---|---|---|
committer | Christian Hopps <chopps@labn.net> | 2023-04-02 00:06:43 +0200 |
commit | 8033bf3976d85c84f00a3ab320eca5fc8418d756 (patch) | |
tree | 945221853843902b26bb0ba00facc01dae628ad7 /lib/vty.c | |
parent | mgmtd: remove startup config feature for now (diff) | |
download | frr-8033bf3976d85c84f00a3ab320eca5fc8418d756.tar.xz frr-8033bf3976d85c84f00a3ab320eca5fc8418d756.zip |
mgmtd: lib: read transitioned daemons split config files in mgmtd
When daemons transition to mgmtd they should stop reading their split config
files, and let mgmtd do that, otherwise things can get out of sync.
Signed-off-by: Christian Hopps <chopps@labn.net>
Diffstat (limited to 'lib/vty.c')
-rw-r--r-- | lib/vty.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2400,7 +2400,7 @@ static void vty_timeout(struct event *thread) } /* Read up configuration file from file_name. */ -static void vty_read_file(struct nb_config *config, FILE *confp) +void vty_read_file(struct nb_config *config, FILE *confp) { int ret; struct vty *vty; |