From 1cf6da62d82bd7fa7a75c34e921a34b9a863ea18 Mon Sep 17 00:00:00 2001 From: Weilin Du Date: Fri, 26 Jun 2026 12:19:01 +0800 Subject: [PATCH] ext/standard: Fix #undef directive after cache_request_parse_body_options (#22457) `CACHE_OPTION` should be typo, and it should instead be `CHECK_OPTION`. --- ext/standard/http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/standard/http.c b/ext/standard/http.c index 99509e7ceb04..d65e7a8acaae 100644 --- a/ext/standard/http.c +++ b/ext/standard/http.c @@ -317,7 +317,7 @@ static zend_result cache_request_parse_body_options(HashTable *options) return FAILURE; } ZEND_HASH_FOREACH_END(); -#undef CACHE_OPTION +#undef CHECK_OPTION return SUCCESS; }