diff options
author | Marcus Brinkmann <[email protected]> | 2008-02-15 22:57:52 +0000 |
---|---|---|
committer | Marcus Brinkmann <[email protected]> | 2008-02-15 22:57:52 +0000 |
commit | ccd25447f10c55ba3262c33854cceee46e16e36f (patch) | |
tree | fe345941993c06cb51d42233f310d90840aa293e /common/exechelp.c | |
parent | Preparing a test release (diff) | |
download | gnupg-ccd25447f10c55ba3262c33854cceee46e16e36f.tar.gz gnupg-ccd25447f10c55ba3262c33854cceee46e16e36f.zip |
2008-02-15 Marcus Brinkmann <[email protected]>
* exechelp.c (gnupg_spawn_process_fd): Add flag DETACHED_PROCESS
unconditionally (required for all callers at the moment).
Diffstat (limited to '')
-rw-r--r-- | common/exechelp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/exechelp.c b/common/exechelp.c index 09f90ef91..dcbbe90b0 100644 --- a/common/exechelp.c +++ b/common/exechelp.c @@ -562,7 +562,7 @@ gnupg_spawn_process_fd (const char *pgmname, const char *argv[], TRUE, /* Inherit handles. */ (CREATE_DEFAULT_ERROR_MODE | GetPriorityClass (GetCurrentProcess ()) - | CREATE_SUSPENDED), + | CREATE_SUSPENDED | DETACHED_PROCESS), NULL, /* Environment. */ NULL, /* Use current drive/directory. */ &si, /* Startup information. */ |