0
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2025-06-30 22:18:19 -04:00

Fix: Fixed warnings about filenames being too long for error message buffer

This commit is contained in:
Philipp Schafft 2023-06-22 12:54:14 +00:00
parent 14eed7e9bf
commit a53317c7e4

View File

@ -254,7 +254,7 @@ static int _start_logging(void)
char fn_error[FILENAME_MAX];
char fn_access[FILENAME_MAX];
char fn_playlist[FILENAME_MAX];
char buf[1024];
char buf[1024 + FILENAME_MAX];
int log_to_stderr;
ice_config_t *config = config_get_config_unlocked();