mirror of
git://git.gnupg.org/gnupg.git
synced 2025-02-01 16:33:02 +01:00
kbx: Include deleted records into the --stats output.
* kbx/keybox-dump.c (_keybox_dump_file): Take deleted records in account. -- This also changes the numbering of the records to reflect the real record number. Signed-off-by: Werner Koch <wk@gnupg.org> (cherry picked from commit 5ef0d7a795cf2462314ea0cb72c7efa7243ab405)
This commit is contained in:
parent
e854580fa5
commit
34f55c5e34
@ -573,6 +573,7 @@ _keybox_dump_file (const char *filename, int stats_only, FILE *outfp)
|
||||
int rc;
|
||||
unsigned long count = 0;
|
||||
struct file_stats_s stats;
|
||||
int skipped_deleted;
|
||||
|
||||
memset (&stats, 0, sizeof stats);
|
||||
|
||||
@ -581,7 +582,7 @@ _keybox_dump_file (const char *filename, int stats_only, FILE *outfp)
|
||||
|
||||
for (;;)
|
||||
{
|
||||
rc = _keybox_read_blob (&blob, fp, NULL);
|
||||
rc = _keybox_read_blob (&blob, fp, &skipped_deleted);
|
||||
if (gpg_err_code (rc) == GPG_ERR_TOO_LARGE
|
||||
&& gpg_err_source (rc) == GPG_ERR_SOURCE_KEYBOX)
|
||||
{
|
||||
@ -598,8 +599,12 @@ _keybox_dump_file (const char *filename, int stats_only, FILE *outfp)
|
||||
if (rc)
|
||||
break;
|
||||
|
||||
count += skipped_deleted;
|
||||
|
||||
if (stats_only)
|
||||
{
|
||||
stats.total_blob_count += skipped_deleted;
|
||||
stats.empty_blob_count += skipped_deleted;
|
||||
update_stats (blob, &stats);
|
||||
}
|
||||
else
|
||||
|
Loading…
x
Reference in New Issue
Block a user