From eac2122b04b68f4abf09d2584f96c8fd8c67a144 Mon Sep 17 00:00:00 2001 From: Vito Caputo Date: Thu, 26 Aug 2021 03:06:19 -0700 Subject: vmon: bump max --name length in snapshot filename 16+NUL was clearly too short for descriptive names, pushed it all up to get closer to the common 256 fs limit. --- src/vmon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vmon.c b/src/vmon.c index ebac3a1..bb8e3a2 100644 --- a/src/vmon.c +++ b/src/vmon.c @@ -524,7 +524,7 @@ static int vmon_snapshot(vmon_t *vmon) struct tm *start_time; char start_str[32]; char path[4096]; - char name[17] = {}; + char name[200] = {}; FILE *output; int r; -- cgit v1.2.3