aboutsummaryrefslogtreecommitdiffstats
path: root/tools/gpgtar-create.c
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2016-05-27 22:07:09 +0000
committerWerner Koch <[email protected]>2016-05-27 22:07:09 +0000
commit239a4d53916b47b5b0f0167a9b2c7a8915bb9c52 (patch)
tree81a7954bc955131f65cd87b26933b42833cdfee5 /tools/gpgtar-create.c
parentcommon: Allow a second input stream for gnupg_exec_tool_stream. (diff)
downloadgnupg-239a4d53916b47b5b0f0167a9b2c7a8915bb9c52.tar.gz
gnupg-239a4d53916b47b5b0f0167a9b2c7a8915bb9c52.zip
common: Add a status callback to gnupg_exec_tool_stream.
* common/exectool.h (exec_tool_status_cb_t): New. * common/exectool.c: Include missing exectool.h. (read_and_log_buffer_t): Replace array by pointer. (gnupg_exec_tool_stream): Add args 'status_cb' and 'status_cb_value'. Change all callers to pass NULL for them. Malloc buffer for FDERRSTATE. (read_and_log_stderr): Implement status_fd feature. Signed-off-by: Werner Koch <[email protected]>
Diffstat (limited to 'tools/gpgtar-create.c')
-rw-r--r--tools/gpgtar-create.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/gpgtar-create.c b/tools/gpgtar-create.c
index d615fd38d..6adc1f513 100644
--- a/tools/gpgtar-create.c
+++ b/tools/gpgtar-create.c
@@ -932,7 +932,7 @@ gpgtar_create (char **inpattern, int encrypt, int sign)
}
err = gnupg_exec_tool_stream (opt.gpg_program, argv,
- outstream, NULL, cipher_stream);
+ outstream, NULL, cipher_stream, NULL, NULL);
xfree (argv);
if (err)
goto leave;