svn commit: r1933000 - apr/apr/branches/1.7.x/include
[email protected] Sun, 12 Apr 2026 18:50:02 -0000
| Newsgroups | gmane.comp.apache.apr.cvs |
|---|---|
| Message-ID | <177601980217.2096369.1915457426863331572@svn03-he-fi> |
Author: michaelo Date: Sun Apr 12 18:50:01 2026 New Revision: 1933000 Log: Merge r1932996 from trunk: 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. Submitted by: Dag-Erling Smørgrav <[email protected]> This closes #70 Modified: apr/apr/branches/1.7.x/include/apr_cstr.h Modified: apr/apr/branches/1.7.x/include/apr_cstr.h ============================================================================== --- apr/apr/branches/1.7.x/include/apr_cstr.h Sun Apr 12 18:49:12 2026 (r1932999) +++ apr/apr/branches/1.7.x/include/apr_cstr.h Sun Apr 12 18:50:01 2026 (r1933000) @@ -26,9 +26,9 @@ #ifndef APR_CSTR_H #define APR_CSTR_H -#include <apr.h> /* for apr_size_t */ -#include <apr_pools.h> /* for apr_pool_t */ -#include <apr_tables.h> /* 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" {