Avoid possible truncation of path strings when writing config file.

This commit is contained in:
Martin Whitaker 2021-01-01 19:31:05 +00:00
parent 4b3e1099e5
commit 2e4bf05e21
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2000-2020 Stephen Williams (steve@icarus.com)
* Copyright (c) 2000-2021 Stephen Williams (steve@icarus.com)
*
* This source code is free software; you can redistribute it
* and/or modify it in source code form under the terms of the GNU
@ -184,7 +184,7 @@ int verbose_flag = 0;
FILE *fp;
char line[MAXSIZE];
char tmp[MAXSIZE];
char tmp[MAXSIZE+24];
static char ivl_root[MAXSIZE];