mirror of
git://git.gnupg.org/gnupg.git
synced 2024-12-22 10:19:57 +01:00
Fix setting of default homedir for Wince
Accidentally used == for assignment. Not a problem in our test environment because we use /gnupg as home directory anyway.
This commit is contained in:
parent
2b81258b2b
commit
05a3f56391
@ -3,6 +3,8 @@
|
||||
* dirmngr.c (handle_connections): Rewrite loop to use pth-select
|
||||
so to sync timeouts to the full second.
|
||||
(pth_thread_id): New.
|
||||
(main) [W32CE]: Fix setting of default homedir.
|
||||
|
||||
* ldap-wrapper.c (ldap_wrapper_thread): Sync to the full second.
|
||||
Increate pth_wait timeout from 1 to 2 seconds.
|
||||
|
||||
|
@ -729,7 +729,7 @@ main (int argc, char **argv)
|
||||
if (opt.system_daemon && !homedir_seen)
|
||||
{
|
||||
#ifdef HAVE_W32CE_SYSTEM
|
||||
opt.homedir == DIRSEP_S "gnupg";
|
||||
opt.homedir = DIRSEP_S "gnupg";
|
||||
#else
|
||||
opt.homedir = gnupg_sysconfdir ();
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user