return cs->name2_quote;
}
+/** Set the quoting of the name2 identifier
+ *
+ * @param[in] cs containing name2.
+ * @param[in] token the quote token
+ */
+void cf_section_add_name2_quote(CONF_SECTION *cs, fr_token_t token)
+{
+ if (!cs) return;
+
+ cs->name2_quote = token;
+}
+
/** Return the quoting for one of the variadic arguments
*
* @param[in] cs containing the arguments.
fr_token_t cf_section_name2_quote(CONF_SECTION const *cs);
fr_token_t cf_section_argv_quote(CONF_SECTION const *cs, int argc);
+// only for rewrite_update
+void cf_section_add_name2_quote(CONF_SECTION *cs, fr_token_t token);
+
#define cf_section_free_children(_x) cf_item_free_children(cf_section_to_item(_x))