svn commit: r1932999 - apr/apr/branches/1.8.x/include

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

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.8.x/include/apr_cstr.h

Modified: apr/apr/branches/1.8.x/include/apr_cstr.h
==============================================================================
--- apr/apr/branches/1.8.x/include/apr_cstr.h	Sun Apr 12 18:48:55 2026	(r1932998)
+++ apr/apr/branches/1.8.x/include/apr_cstr.h	Sun Apr 12 18:49:12 2026	(r1932999)
@@ -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" {