FPM: Remove usage of non-existing MAX_LINE_LENGTH constant (#5634)

This commit is contained in:
Orlando Thöny 2024-08-24 16:26:58 +02:00 committed by GitHub
parent 67aac59cfc
commit 9c267778d2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -19,11 +19,7 @@
#include "fastcgi.h"
#include "zlog.h"
#ifdef MAX_LINE_LENGTH
# define FPM_LOG_BUFFER MAX_LINE_LENGTH
#else
# define FPM_LOG_BUFFER 1024
#endif
#define FPM_LOG_BUFFER 1024
static char *fpm_log_format = NULL;
static int fpm_log_fd = -1;