mirror of
https://github.com/openresty/openresty.git
synced 2024-10-13 00:29:41 +00:00
patches: added the nginx-1.17.4 patches.
This commit is contained in:
15
patches/nginx-1.17.4-win32_max_err_str.patch
Normal file
15
patches/nginx-1.17.4-win32_max_err_str.patch
Normal file
@ -0,0 +1,15 @@
|
||||
diff --git a/src/os/win32/ngx_event_log.c b/src/os/win32/ngx_event_log.c
|
||||
index e11ed1e8..dce8eddd 100644
|
||||
--- a/src/os/win32/ngx_event_log.c
|
||||
+++ b/src/os/win32/ngx_event_log.c
|
||||
@@ -8,7 +8,9 @@
|
||||
#include <ngx_core.h>
|
||||
|
||||
|
||||
-#define NGX_MAX_ERROR_STR 2048
|
||||
+#ifndef NGX_MAX_ERROR_STR
|
||||
+#define NGX_MAX_ERROR_STR 4096
|
||||
+#endif
|
||||
|
||||
|
||||
void ngx_cdecl
|
Reference in New Issue
Block a user