From d86c25d88ede7bdacbaef99e87c7ab6ccd4138c2 Mon Sep 17 00:00:00 2001 From: "Christoph M. Becker" Date: Sun, 4 Jul 2021 23:13:50 +0200 Subject: [PATCH] Fix build `accel_system_id` gas been renamed to `zend_system_id`. --- ext/opcache/shared_alloc_win32.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/opcache/shared_alloc_win32.c b/ext/opcache/shared_alloc_win32.c index 0ca0c4f43a2..d445c3c0265 100644 --- a/ext/opcache/shared_alloc_win32.c +++ b/ext/opcache/shared_alloc_win32.c @@ -80,7 +80,7 @@ static char *create_name_with_username(char *name) *(p++) = '@'; p += strlcpy(p, sapi_module.name, 21); *(p++) = '@'; - memcpy(p, accel_system_id, 32); + memcpy(p, zend_system_id, 32); p += 32; *(p++) = '\0'; ZEND_ASSERT(p - newname <= sizeof(newname));