2004-03-08 Marcus Brinkmann <marcus@g10code.de>

* gpgconf-comp.c (retrieve_options_from_file): Quote each string
	in the list, not only the first.
This commit is contained in:
Marcus Brinkmann 2004-03-08 17:59:24 +00:00
parent 5c457626a8
commit 8cf4e69141
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2004-03-08 Marcus Brinkmann <marcus@g10code.de>
* gpgconf-comp.c (retrieve_options_from_file): Quote each string
in the list, not only the first.
2004-02-26 Marcus Brinkmann <marcus@g10code.de>
* gpgconf-comp.c (gc_component_list_options): Do not print empty

View File

@ -1172,11 +1172,11 @@ retrieve_options_from_file (gc_component_t component, gc_backend_t backend)
while (*(end - 1) == ' ' || *(end - 1) == '\t')
end--;
*end = '\0';
/* FIXME: Oh, no! This is so lame! Use realloc and really
append. */
/* FIXME: Oh, no! This is so lame! Should use realloc and
really append. */
if (list)
{
new_list = xasprintf ("%s,%s", list, percent_escape (start));
new_list = xasprintf ("%s,\"%s", list, percent_escape (start));
xfree (list);
list = new_list;
}