Change --dameon home directory to /gnupg under Wince

This commit is contained in:
Werner Koch 2010-12-14 12:10:28 +00:00
parent b1d3452337
commit 43a7cb7fd4
3 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2010-12-14 Werner Koch <wk@g10code.com>
* dirmngr.c (main) [W32CE]: Change homedir in daemon mode to /gnupg.
2010-12-07 Werner Koch <wk@g10code.com>
* dirmngr.c (TIMERTICK_INTERVAL) [W32CE]: Change to 60s.

View File

@ -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

View File

@ -721,7 +721,11 @@ main (int argc, char **argv)
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 ();
}