mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-03 12:11:33 +01:00
Change --dameon home directory to /gnupg under Wince
This commit is contained in:
parent
b1d3452337
commit
43a7cb7fd4
@ -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.
|
||||
|
@ -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
|
||||
|
@ -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 ();
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user