From 8043a71dbfa7c973e055b89517fbb1114d38ba0a Mon Sep 17 00:00:00 2001 From: David Lamparter Date: Thu, 21 Mar 2024 10:25:26 +1000 Subject: [PATCH] lib: fix SQLite dbfile path length I can't see them but apparently this causes compiler warnings. Signed-off-by: David Lamparter --- lib/libfrr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/libfrr.c b/lib/libfrr.c index c5c7e7837a..fba4a2643d 100644 --- a/lib/libfrr.c +++ b/lib/libfrr.c @@ -59,7 +59,7 @@ char config_default[512]; char frr_zclientpath[512]; static char pidfile_default[1024]; #ifdef HAVE_SQLITE3 -static char dbfile_default[512]; +static char dbfile_default[1024]; #endif static char vtypath_default[512]; -- 2.39.5