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/engine-gpgconf.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/engine-gpgconf.c')
-rw-r--r-- | src/engine-gpgconf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/engine-gpgconf.c b/src/engine-gpgconf.c index d1f27c2b..cfa04ce8 100644 --- a/src/engine-gpgconf.c +++ b/src/engine-gpgconf.c @@ -221,7 +221,7 @@ gpgconf_read (void *engine, char *arg1, char *arg2, cfd[0].fd = rp[1]; - status = _gpgme_io_spawn (gpgconf->file_name, argv, cfd, NULL); + status = _gpgme_io_spawn (gpgconf->file_name, argv, 0, cfd, NULL); if (status < 0) { _gpgme_io_close (rp[0]); @@ -659,7 +659,7 @@ gpgconf_write (void *engine, char *arg1, char *arg2, gpgme_data_t conf) cfd[0].fd = rp[0]; - status = _gpgme_io_spawn (gpgconf->file_name, argv, cfd, NULL); + status = _gpgme_io_spawn (gpgconf->file_name, argv, 0, cfd, NULL); if (status < 0) { _gpgme_io_close (rp[0]); |