aboutsummaryrefslogtreecommitdiffstats
path: root/tools/gpgtar.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/gpgtar.h')
-rw-r--r--tools/gpgtar.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/tools/gpgtar.h b/tools/gpgtar.h
index 0854064fb..9177fcfcb 100644
--- a/tools/gpgtar.h
+++ b/tools/gpgtar.h
@@ -45,6 +45,7 @@ struct
int answer_yes;
int answer_no;
int status_fd;
+ estream_t status_stream;
int require_compliance;
int with_log;
} opt;
@@ -53,8 +54,14 @@ struct
/* An info structure to avoid global variables. */
struct tarinfo_s
{
- unsigned long long nblocks; /* Count of processed blocks. */
+ unsigned long long nblocks; /* Count of processed blocks. */
unsigned long long headerblock; /* Number of current header block. */
+ unsigned long long nextracted; /* Number of extracted files. */
+ unsigned long skipped_badname;
+ unsigned long skipped_suspicious;
+ unsigned long skipped_symlinks;
+ unsigned long skipped_hardlinks;
+ unsigned long skipped_other;
};
typedef struct tarinfo_s *tarinfo_t;