[svn] GpgEX - r24 - trunk/src
svn author marcus
cvs at cvs.gnupg.org
Fri Oct 5 04:29:57 CEST 2007
Author: marcus
Date: 2007-10-05 04:29:48 +0200 (Fri, 05 Oct 2007)
New Revision: 24
Modified:
trunk/src/ChangeLog
trunk/src/client.cc
trunk/src/gpgex.cc
Log:
2007-10-05 Marcus Brinkmann <marcus at g10code.de>
* client.cc (percent_escape): Also escape ':' again.
* gpgex.cc (start_help): Do not sleep.
Modified: trunk/src/ChangeLog
===================================================================
--- trunk/src/ChangeLog 2007-10-05 00:48:16 UTC (rev 23)
+++ trunk/src/ChangeLog 2007-10-05 02:29:48 UTC (rev 24)
@@ -1,5 +1,8 @@
2007-10-05 Marcus Brinkmann <marcus at g10code.de>
+ * client.cc (percent_escape): Also escape ':' again.
+ * gpgex.cc (start_help): Do not sleep.
+
* client.h (class client_t): Two new member functions
create_checksums and verify_checksums.
* client.cc (client_t::create_checksums, client_t::verify_checksums): New functions.
Modified: trunk/src/client.cc
===================================================================
--- trunk/src/client.cc 2007-10-05 00:48:16 UTC (rev 23)
+++ trunk/src/client.cc 2007-10-05 02:29:48 UTC (rev 24)
@@ -81,7 +81,6 @@
i = 0;
while (*str)
{
-#if 0
/* FIXME: Work around a bug in Kleo. */
if (*str == ':')
{
@@ -90,7 +89,6 @@
ptr[i++] = 'a';
}
else
-#endif
if (*str == '%')
{
ptr[i++] = '%';
Modified: trunk/src/gpgex.cc
===================================================================
--- trunk/src/gpgex.cc 2007-10-05 00:48:16 UTC (rev 23)
+++ trunk/src/gpgex.cc 2007-10-05 02:29:48 UTC (rev 24)
@@ -502,7 +502,8 @@
return;
}
- Sleep (5000);
+ /* Do more stuff. */
+
web->Release ();
}
More information about the Gnupg-commits
mailing list