diff options
Diffstat (limited to 'src/conf.c')
-rw-r--r-- | src/conf.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -155,7 +155,7 @@ void conf_path_set(const char *path) */ int conf_path_get(char *path, size_t sz) { - char buf[256]; + char buf[FS_PATH_MAX]; int err; /* Use explicit conf path */ @@ -296,7 +296,7 @@ int conf_get_sa(const struct conf *conf, const char *name, struct sa *sa) */ int conf_configure(void) { - char path[256], file[256]; + char path[FS_PATH_MAX], file[FS_PATH_MAX]; int err; #if defined (WIN32) |