diff options
| author | David Lamparter <equinox@opensourcerouting.org> | 2023-01-31 22:05:17 +0100 |
|---|---|---|
| committer | David Lamparter <equinox@opensourcerouting.org> | 2023-02-01 03:00:22 +0100 |
| commit | bd90faea56981809da52f79ad17cd94632f16bc2 (patch) | |
| tree | 867b4795e6b315945a45f2de67a22d85b5edcdff /lib/libfrr.c | |
| parent | e3a7fc502167ee6c3aba7f708b0ceaa64598fde6 (diff) | |
lib: fix one more b0rked format string
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'lib/libfrr.c')
| -rw-r--r-- | lib/libfrr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libfrr.c b/lib/libfrr.c index aee6981854..2cab6d9824 100644 --- a/lib/libfrr.c +++ b/lib/libfrr.c @@ -789,7 +789,7 @@ struct thread_master *frr_init(void) #ifdef HAVE_SQLITE3 if (!di->db_file) di->db_file = dbfile_default; - db_init(di->db_file); + db_init("%s", di->db_file); #endif if (di->flags & FRR_LIMITED_CLI) |
