<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">--- a/src/libcharon/plugins/uci/uci_parser.c
+++ b/src/libcharon/plugins/uci/uci_parser.c
@@ -75,7 +75,7 @@ METHOD(enumerator_t, section_enumerator_
 		if (uci_lookup(this-&gt;ctx, &amp;element, this-&gt;package,
 					   this-&gt;current-&gt;name, "name") == UCI_OK)
 		{	/* use "name" attribute as config name if available ... */
-			*value = uci_to_option(element)-&gt;value;
+			*value = uci_to_option(element)-&gt;v.string;
 		}
 		else
 		{	/* ... or the section name becomes config name */
@@ -90,7 +90,7 @@ METHOD(enumerator_t, section_enumerator_
 		if (value &amp;&amp; uci_lookup(this-&gt;ctx, &amp;element, this-&gt;package,
 						  this-&gt;current-&gt;name, this-&gt;keywords[i]) == UCI_OK)
 		{
-			*value = uci_to_option(element)-&gt;value;
+			*value = uci_to_option(element)-&gt;v.string;
 		}
 	}
 
</pre></body></html>