svn commit: r1932996 - apr/apr/trunk/include

[email protected] Sun, 12 Apr 2026 18:43:42 -0000
Newsgroups gmane.comp.apache.apr.cvs
Message-ID <177601942299.2089914.13612323502954548960@svn03-he-fi>
Author: michaelo
Date: Sun Apr 12 18:43:42 2026
New Revision: 1932996

Log:
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/trunk/include/apr_cstr.h

Modified: apr/apr/trunk/include/apr_cstr.h
==============================================================================
--- apr/apr/trunk/include/apr_cstr.h	Sun Apr 12 18:39:13 2026	(r1932995)
+++ apr/apr/trunk/include/apr_cstr.h	Sun Apr 12 18:43:42 2026	(r1932996)
@@ -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" {