[git] GnuPG - branch, master, updated. gnupg-2.1.0beta1-47-g05a3f56
by Werner Koch
cvs at cvs.gnupg.org
Tue Jan 25 14:06:05 CET 2011
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "The GNU Privacy Guard".
The branch, master has been updated
via 05a3f5639139c14d360da29141108a868fbc3071 (commit)
from 2b81258b2bf80e4819904028c3ac5fddcec2a8e9 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 05a3f5639139c14d360da29141108a868fbc3071
Author: Werner Koch <wk at gnupg.org>
Date: Tue Jan 25 13:44:27 2011 +0100
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.
diff --git a/dirmngr/ChangeLog b/dirmngr/ChangeLog
index 716effb..02defce 100644
--- a/dirmngr/ChangeLog
+++ b/dirmngr/ChangeLog
@@ -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.
diff --git a/dirmngr/dirmngr.c b/dirmngr/dirmngr.c
index 678cf3d..e1bae7e 100644
--- a/dirmngr/dirmngr.c
+++ b/dirmngr/dirmngr.c
@@ -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
-----------------------------------------------------------------------
Summary of changes:
dirmngr/ChangeLog | 2 ++
dirmngr/dirmngr.c | 2 +-
2 files changed, 3 insertions(+), 1 deletions(-)
hooks/post-receive
--
The GNU Privacy Guard
http://git.gnupg.org
More information about the Gnupg-commits
mailing list