aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/gpgtar-create.c1
-rw-r--r--tools/gpgtar-extract.c3
-rw-r--r--tools/gpgtar-list.c3
3 files changed, 5 insertions, 2 deletions
diff --git a/tools/gpgtar-create.c b/tools/gpgtar-create.c
index 92c1fb8f6..774fcd37f 100644
--- a/tools/gpgtar-create.c
+++ b/tools/gpgtar-create.c
@@ -894,6 +894,7 @@ gpgtar_create (char **inpattern, int encrypt)
err = gpg_encrypt_stream (NULL,
opt.gpg_program,
+ NULL,
outstream,
opt.recipients,
cipher_stream);
diff --git a/tools/gpgtar-extract.c b/tools/gpgtar-extract.c
index fa2f3626a..7e7a351ba 100644
--- a/tools/gpgtar-extract.c
+++ b/tools/gpgtar-extract.c
@@ -303,7 +303,8 @@ gpgtar_extract (const char *filename, int decrypt)
err = gpg_error_from_syserror ();
goto leave;
}
- err = gpg_decrypt_stream (NULL, opt.gpg_program, cipher_stream, stream);
+ err = gpg_decrypt_stream (NULL, opt.gpg_program, NULL,
+ cipher_stream, stream);
if (err)
goto leave;
diff --git a/tools/gpgtar-list.c b/tools/gpgtar-list.c
index cdc7fc46e..1eab7e574 100644
--- a/tools/gpgtar-list.c
+++ b/tools/gpgtar-list.c
@@ -306,7 +306,8 @@ gpgtar_list (const char *filename, int decrypt)
err = gpg_error_from_syserror ();
goto leave;
}
- err = gpg_decrypt_stream (NULL, opt.gpg_program, cipher_stream, stream);
+ err = gpg_decrypt_stream (NULL, opt.gpg_program, NULL,
+ cipher_stream, stream);
if (err)
goto leave;