From ae3b81dcfe2e7b1964f7d4e200c7a40bb7dd78b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20D=C3=BCsterhus?= Date: Thu, 21 Aug 2025 10:23:39 +0200 Subject: [PATCH] uri: Fix header guard constant name for `uri_parser_*.h` (#19539) Introduced in php/php-src#19530. --- ext/uri/uri_parser_rfc3986.h | 4 ++-- ext/uri/uri_parser_whatwg.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ext/uri/uri_parser_rfc3986.h b/ext/uri/uri_parser_rfc3986.h index 846b54340c5..1baf80c2f08 100644 --- a/ext/uri/uri_parser_rfc3986.h +++ b/ext/uri/uri_parser_rfc3986.h @@ -14,8 +14,8 @@ +----------------------------------------------------------------------+ */ -#ifndef PHP_URIPARSER_H -#define PHP_URIPARSER_H +#ifndef PHP_URI_PARSER_RFC3986_H +#define PHP_URI_PARSER_RFC3986_H #include #include "php_uri_common.h" diff --git a/ext/uri/uri_parser_whatwg.h b/ext/uri/uri_parser_whatwg.h index b0ef95112ad..2727ff4a3ec 100644 --- a/ext/uri/uri_parser_whatwg.h +++ b/ext/uri/uri_parser_whatwg.h @@ -14,8 +14,8 @@ +----------------------------------------------------------------------+ */ -#ifndef PHP_LEXBOR_H -#define PHP_LEXBOR_H +#ifndef PHP_URI_PARSER_WHATWG_H +#define PHP_URI_PARSER_WHATWG_H #include "php_uri_common.h" #include "lexbor/url/url.h"