2007-12-04 Marcus Brinkmann <marcus@g10code.de>

* gpgconf-comp.c (gc_component_list_components): Do not print a
	trailing semi-colon to ensure forward compatibility, as this would
	indicate another empty field.
This commit is contained in:
Marcus Brinkmann 2007-12-03 23:39:49 +00:00
parent ef3ea356ae
commit a9b7f3356b
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2007-12-04 Marcus Brinkmann <marcus@g10code.de>
* gpgconf-comp.c (gc_component_list_components): Do not print a
trailing semi-colon to ensure forward compatibility, as this would
indicate another empty field.
2007-11-15 Werner Koch <wk@g10code.com>
* gpg-connect-agent.c (start_agent): Adjust changed

View File

@ -1176,7 +1176,7 @@ gc_component_list_components (FILE *out)
desc = my_dgettext (gc_component[component].desc_domain, desc);
fprintf (out, "%s:%s:",
gc_component[component].name, my_percent_escape (desc));
fprintf (out, "%s:\n", my_percent_escape (pgmname));
fprintf (out, "%s\n", my_percent_escape (pgmname));
}
}
}