diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2021-08-26 03:06:19 -0700 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2021-08-26 03:06:19 -0700 |
commit | eac2122b04b68f4abf09d2584f96c8fd8c67a144 (patch) | |
tree | 79547465c34947d6198dd0f9bc354ebb6a3a4c97 /src/vmon.c | |
parent | f29d8d7f801dab7c5b8381c0a0be733ebb21e7a7 (diff) |
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.
Diffstat (limited to 'src/vmon.c')
-rw-r--r-- | src/vmon.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |