1
0
mirror of https://github.com/osmarks/ngircd.git synced 2024-10-27 20:36:18 +00:00

Enlarge buffer for log messages

For example, SSL/TLS certificate information can easily get longer than
256 characters. So enlarge the log buffer to 1 KB.
This commit is contained in:
Alexander Barton 2024-01-05 22:18:17 +01:00
parent 21c1751b04
commit 7c90264f1f

View File

@ -39,7 +39,7 @@
#define LINE_LEN 1024 #define LINE_LEN 1024
/** Max. length of a log message. */ /** Max. length of a log message. */
#define MAX_LOG_MSG_LEN 256 #define MAX_LOG_MSG_LEN 1024
/** Max. length of file name. */ /** Max. length of file name. */
#define FNAME_LEN 256 #define FNAME_LEN 256