1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-02 22:46:30 +02:00

* options.h, import.c (parse_import_options, clean_sigs_from_all_uids,

import_one): Add import-minimal option. Similar to export-minimal, except
it works on the way in.
This commit is contained in:
David Shaw 2005-11-10 21:30:27 +00:00
parent debc169f88
commit 477ded81a4
4 changed files with 16 additions and 7 deletions

View file

@ -265,8 +265,9 @@ struct {
#define IMPORT_FAST (1<<2)
#define IMPORT_SK2PK (1<<3)
#define IMPORT_MERGE_ONLY (1<<4)
#define IMPORT_CLEAN_SIGS (1<<5)
#define IMPORT_CLEAN_UIDS (1<<6)
#define IMPORT_MINIMAL (1<<5)
#define IMPORT_CLEAN_SIGS (1<<6)
#define IMPORT_CLEAN_UIDS (1<<7)
#define EXPORT_LOCAL_SIGS (1<<0)
#define EXPORT_ATTRIBUTES (1<<1)