[svn] GnuPG - r5498 - trunk/dirmngr
svn author wk
cvs at cvs.gnupg.org
Tue Dec 14 13:10:28 CET 2010
Author: wk
Date: 2010-12-14 13:10:28 +0100 (Tue, 14 Dec 2010)
New Revision: 5498
Modified:
trunk/dirmngr/ChangeLog
trunk/dirmngr/crlcache.c
trunk/dirmngr/dirmngr.c
Log:
Change --dameon home directory to /gnupg under Wince
Modified: trunk/dirmngr/ChangeLog
===================================================================
--- trunk/dirmngr/ChangeLog 2010-12-10 20:09:56 UTC (rev 5497)
+++ trunk/dirmngr/ChangeLog 2010-12-14 12:10:28 UTC (rev 5498)
@@ -1,3 +1,7 @@
+2010-12-14 Werner Koch <wk at g10code.com>
+
+ * dirmngr.c (main) [W32CE]: Change homedir in daemon mode to /gnupg.
+
2010-12-07 Werner Koch <wk at g10code.com>
* dirmngr.c (TIMERTICK_INTERVAL) [W32CE]: Change to 60s.
Modified: trunk/dirmngr/crlcache.c
===================================================================
--- trunk/dirmngr/crlcache.c 2010-12-10 20:09:56 UTC (rev 5497)
+++ trunk/dirmngr/crlcache.c 2010-12-14 12:10:28 UTC (rev 5498)
@@ -53,7 +53,7 @@
A "c" or "u" indicate a valid cache entry, however
"u" requires that a user root certificate check needs
to be done.
- An "i" indicates an invalid Cache entry which should
+ An "i" indicates an invalid cache entry which should
not be used but still exists so that it can be
updated at NEXT_UPDATE.
Field 2: Hexadecimal encoded SHA-1 hash of the issuer DN using
Modified: trunk/dirmngr/dirmngr.c
===================================================================
--- trunk/dirmngr/dirmngr.c 2010-12-10 20:09:56 UTC (rev 5497)
+++ trunk/dirmngr/dirmngr.c 2010-12-14 12:10:28 UTC (rev 5498)
@@ -721,7 +721,11 @@
this also overrides the GNUPGHOME environment variable. */
if (opt.system_daemon && !homedir_seen)
{
+#ifdef HAVE_W32CE_SYSTEM
+ opt.homedir == DIRSEP_S "gnupg";
+#else
opt.homedir = gnupg_sysconfdir ();
+#endif
opt.homedir_data = gnupg_datadir ();
opt.homedir_cache = gnupg_cachedir ();
}
More information about the Gnupg-commits
mailing list