diff options
author | Werner Koch <[email protected]> | 2009-06-12 16:58:45 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2009-06-12 16:58:45 +0000 |
commit | 148f51bb3e6e592333250ef73f2b801a10734083 (patch) | |
tree | 08ea4fe8f7b9009372821e9b28e41df294b248d8 /src/posix-io.c | |
parent | Fix possible assert in the card edit. (diff) | |
download | gpgme-148f51bb3e6e592333250ef73f2b801a10734083.tar.gz gpgme-148f51bb3e6e592333250ef73f2b801a10734083.zip |
Improved W32 SetForegroundWindow hacks.
Diffstat (limited to 'src/posix-io.c')
-rw-r--r-- | src/posix-io.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/posix-io.c b/src/posix-io.c index c85255e7..869d0701 100644 --- a/src/posix-io.c +++ b/src/posix-io.c @@ -304,13 +304,16 @@ _gpgme_io_waitpid (int pid, int hang, int *r_status, int *r_signal) /* Returns 0 on success, -1 on error. */ int -_gpgme_io_spawn (const char *path, char *const argv[], +_gpgme_io_spawn (const char *path, char *const argv[], unsigned int flags, struct spawn_fd_item_s *fd_list, pid_t *r_pid) { pid_t pid; int i; int status; int signo; + + (void)flags; + TRACE_BEG1 (DEBUG_SYSIO, "_gpgme_io_spawn", path, "path=%s", path); i = 0; |