From 9d49c6af71ad9577c2029a3b2cbd0bca4114af0b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dag-Erling=20Sm=C3=B8rgrav?= Date: Fri, 20 Mar 2026 11:56:10 +0100 Subject: [PATCH] apr_cstr.h: Fix inclusion of other APR headers Use double quotation marks, not angle brackets, when including other APR headers from apr_cstr.h. This matches what all the other APR headers do and avoids tripping certain static analysis tools. --- include/apr_cstr.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/apr_cstr.h b/include/apr_cstr.h index 3f1b1a0995a..372d97fcfe8 100644 --- a/include/apr_cstr.h +++ b/include/apr_cstr.h @@ -26,9 +26,9 @@ #ifndef APR_CSTR_H #define APR_CSTR_H -#include /* for apr_size_t */ -#include /* for apr_pool_t */ -#include /* for apr_array_header_t */ +#include "apr.h" /* for apr_size_t */ +#include "apr_pools.h" /* for apr_pool_t */ +#include "apr_tables.h" /* for apr_array_header_t */ #ifdef __cplusplus extern "C" {