1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-03 22:56:33 +02:00

[W32] Avoid extra console window when importing or exporting.

Fixes bug 875.
This commit is contained in:
Werner Koch 2008-01-27 14:43:52 +00:00
parent c3b9005ec3
commit d84d5ea748
32 changed files with 3643 additions and 3519 deletions

View file

@ -1,3 +1,9 @@
2008-01-27 Werner Koch <wk@g10code.com>
* import.c (popen_protect_tool): Set bit 7 in the flags for
gnupg_spawn_process so that under W32 no window appears.
* export.c (popen_protect_tool): Ditto.
2007-12-13 Werner Koch <wk@g10code.com>
* gpgsm.c (main): Add option --extra-digest-algo.
@ -2181,8 +2187,8 @@ h2007-11-22 Werner Koch <wk@g10code.com>
* server.c (rc_to_assuan_status): New. Use it for all commands.
Copyright 2001, 2002, 2003, 2004, 2005,
2006, 2007 Free Software Foundation, Inc.
Copyright 2001, 2002, 2003, 2004, 2005, 2006,
2007, 2008 Free Software Foundation, Inc.
This file is free software; as a special exception the author gives
unlimited permission to copy and/or distribute it, with or without

View file

@ -597,7 +597,7 @@ popen_protect_tool (const char *pgmname,
assert (i < sizeof argv);
return gnupg_spawn_process (pgmname, argv, infile, outfile,
setup_pinentry_env,
setup_pinentry_env, 128,
statusfile, pid);
}

View file

@ -482,7 +482,7 @@ popen_protect_tool (const char *pgmname,
assert (i < sizeof argv);
return gnupg_spawn_process (pgmname, argv, infile, outfile,
setup_pinentry_env,
setup_pinentry_env, 128,
statusfile, pid);
}