aboutsummaryrefslogtreecommitdiffstats
path: root/g10/g10.c
diff options
context:
space:
mode:
authorDavid Shaw <[email protected]>2002-11-13 17:19:22 +0000
committerDavid Shaw <[email protected]>2002-11-13 17:19:22 +0000
commit7c3eee80ba05a6843fda2c848422d1da04946267 (patch)
tree8fe76ab69a4379a1fda24d93e023ff4653d02799 /g10/g10.c
parent* mk-w32-dist: Don't use iconv for pl.po. From Werner on stable branch. (diff)
downloadgnupg-7c3eee80ba05a6843fda2c848422d1da04946267.tar.gz
gnupg-7c3eee80ba05a6843fda2c848422d1da04946267.zip
* exec.c [__CYGWIN32__]: Keep cygwin separate from Mingw32; we don't need
it here as it behaves more like a Posix system. From Werner on stable branch. * passphrase.c (agent_get_passphrase): Ditto. From Werner on stable branch. * tdbio.c (MY_O_BINARY): Need binary mode with Cygwin. From Werner on stable branch. * g10.c, gpgv.c (main) [__CYGWIN32__]: Don't get the homedir from the registry. From Werner on stable branch.
Diffstat (limited to '')
-rw-r--r--g10/g10.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/g10/g10.c b/g10/g10.c
index d83589eb1..ba5ae58a2 100644
--- a/g10/g10.c
+++ b/g10/g10.c
@@ -1149,7 +1149,7 @@ main( int argc, char **argv )
opt.keyserver_options.include_subkeys=1;
opt.keyserver_options.include_revoked=1;
opt.trust_model=TM_OPENPGP;
-#if defined (__MINGW32__) || defined (__CYGWIN32__)
+#if defined (__MINGW32__)
set_homedir ( read_w32_registry_string( NULL,
"Software\\GNU\\GnuPG", "HomeDir" ));
#else