diff options
author | Werner Koch <wk@gnupg.org> | 2007-08-29 11:51:37 +0200 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2007-08-29 11:51:37 +0200 |
commit | b13587ef167d58f960270fbcef674d8c919ba8dc (patch) | |
tree | f8ec6df5208e0f6dc50941d2f833ee2b3803e7ba /sm | |
parent | Add more passphrase policy rules. (diff) | |
download | gnupg2-b13587ef167d58f960270fbcef674d8c919ba8dc.tar.xz gnupg2-b13587ef167d58f960270fbcef674d8c919ba8dc.zip |
New command --check-programs for gpgconf.
Diffstat (limited to 'sm')
-rw-r--r-- | sm/export.c | 2 | ||||
-rw-r--r-- | sm/import.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sm/export.c b/sm/export.c index e6c29ef17..6854c2a16 100644 --- a/sm/export.c +++ b/sm/export.c @@ -713,7 +713,7 @@ export_p12 (ctrl_t ctrl, const unsigned char *certimg, size_t certimglen, fclose (fp); if (pid != -1) { - if (!gnupg_wait_process (pgmname, pid)) + if (!gnupg_wait_process (pgmname, pid, NULL)) child_err = 0; } if (!err) diff --git a/sm/import.c b/sm/import.c index 4cbea8481..069408f85 100644 --- a/sm/import.c +++ b/sm/import.c @@ -635,7 +635,7 @@ parse_p12 (ctrl_t ctrl, ksba_reader_t reader, fclose (fp); if (pid != -1) { - if (!gnupg_wait_process (pgmname, pid)) + if (!gnupg_wait_process (pgmname, pid, NULL)) child_err = 0; } if (!err) |