1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-02 22:46:30 +02:00

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

@ -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 ();
}