Fix build

`accel_system_id` gas been renamed to `zend_system_id`.
This commit is contained in:
Christoph M. Becker 2021-07-04 23:13:50 +02:00
parent 948b83d7ea
commit d86c25d88e
No known key found for this signature in database
GPG key ID: D66C9593118BCCB6

View file

@ -80,7 +80,7 @@ static char *create_name_with_username(char *name)
*(p++) = '@'; *(p++) = '@';
p += strlcpy(p, sapi_module.name, 21); p += strlcpy(p, sapi_module.name, 21);
*(p++) = '@'; *(p++) = '@';
memcpy(p, accel_system_id, 32); memcpy(p, zend_system_id, 32);
p += 32; p += 32;
*(p++) = '\0'; *(p++) = '\0';
ZEND_ASSERT(p - newname <= sizeof(newname)); ZEND_ASSERT(p - newname <= sizeof(newname));