diff options
author | David Shaw <[email protected]> | 2005-06-08 03:31:48 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2005-06-08 03:31:48 +0000 |
commit | 2c9948c00ad95ec746ffd824f8fea279f2dcab27 (patch) | |
tree | fc3527ad08d06377615249d2d5c86fcc68c99558 /g10/options.h | |
parent | * random.c: Fix prototype of the fast random gatherer. Noted by Joe (diff) | |
download | gnupg-2c9948c00ad95ec746ffd824f8fea279f2dcab27.tar.gz gnupg-2c9948c00ad95ec746ffd824f8fea279f2dcab27.zip |
* options.h, g10.c (main), export.c (parse_export_options,
do_export_stream): Add export-options export-clean-sigs,
export-clean-uids, export-clean-subkeys, and export-clean which is all
of the above. Export-minimal is the same except it also removes all
non-selfsigs. export-unusable-sigs is now a noop.
Diffstat (limited to 'g10/options.h')
-rw-r--r-- | g10/options.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/g10/options.h b/g10/options.h index e1391523a..7ce4ebb76 100644 --- a/g10/options.h +++ b/g10/options.h @@ -257,7 +257,9 @@ struct { #define EXPORT_ATTRIBUTES (1<<1) #define EXPORT_SENSITIVE_REVKEYS (1<<2) #define EXPORT_MINIMAL (1<<3) -#define EXPORT_UNUSABLE_SIGS (1<<4) +#define EXPORT_CLEAN_SIGS (1<<4) +#define EXPORT_CLEAN_UIDS (1<<5) +#define EXPORT_CLEAN_SUBKEYS (1<<6) #define LIST_SHOW_PHOTOS (1<<0) #define LIST_SHOW_POLICY_URLS (1<<1) |