[svn] GnuPG - r4638 - trunk/tools
svn author marcus
cvs at cvs.gnupg.org
Tue Dec 4 00:39:50 CET 2007
Author: marcus
Date: 2007-12-04 00:39:49 +0100 (Tue, 04 Dec 2007)
New Revision: 4638
Modified:
trunk/tools/ChangeLog
trunk/tools/gpgconf-comp.c
Log:
2007-12-04 Marcus Brinkmann <marcus at 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.
Modified: trunk/tools/ChangeLog
===================================================================
--- trunk/tools/ChangeLog 2007-12-03 14:41:38 UTC (rev 4637)
+++ trunk/tools/ChangeLog 2007-12-03 23:39:49 UTC (rev 4638)
@@ -1,3 +1,9 @@
+2007-12-04 Marcus Brinkmann <marcus at 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 at g10code.com>
* gpg-connect-agent.c (start_agent): Adjust changed
Modified: trunk/tools/gpgconf-comp.c
===================================================================
--- trunk/tools/gpgconf-comp.c 2007-12-03 14:41:38 UTC (rev 4637)
+++ trunk/tools/gpgconf-comp.c 2007-12-03 23:39:49 UTC (rev 4638)
@@ -1176,7 +1176,7 @@
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));
}
}
}
More information about the Gnupg-commits
mailing list