Fix for DEBUG_CONF compile flag

This commit is contained in:
Marc Stern
2023-08-16 08:50:09 +02:00
parent b3b33c9ff1
commit 82c69ccf49
2 changed files with 8 additions and 1 deletions

View File

@@ -637,7 +637,10 @@ static char *msre_generate_target_string(apr_pool_t *pool, msre_rule *rule) {
/**
* Generate an action string from an actionset.
*/
static char *msre_actionset_generate_action_string(apr_pool_t *pool, const msre_actionset *actionset) {
#ifndef DEBUG_CONF
static
#endif
char *msre_actionset_generate_action_string(apr_pool_t *pool, const msre_actionset *actionset) {
const apr_array_header_t *tarr = NULL;
const apr_table_entry_t *telts = NULL;
char *actions = NULL;