diff options
author | David Shaw <[email protected]> | 2004-11-25 03:58:42 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2004-11-25 03:58:42 +0000 |
commit | 9a70afe2b31365b63cce1ee70fef6a244415cd1a (patch) | |
tree | 9118d8fd2c6507ff146a3c53c46ac090a313da72 /g10/options.h | |
parent | * trustdb.c (uid_trust_string_fixed): Use a string that can be atoi-ed, (diff) | |
download | gnupg-9a70afe2b31365b63cce1ee70fef6a244415cd1a.tar.gz gnupg-9a70afe2b31365b63cce1ee70fef6a244415cd1a.zip |
* options.h, export.c (parse_export_options, do_export_stream): Add
"export-minimal" option to disregard any sigs except selfsigs.
Diffstat (limited to 'g10/options.h')
-rw-r--r-- | g10/options.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/g10/options.h b/g10/options.h index 66dfb80d0..7f71a7032 100644 --- a/g10/options.h +++ b/g10/options.h @@ -241,7 +241,9 @@ struct { #define PGP7 (opt.compliance==CO_PGP7) #define PGP8 (opt.compliance==CO_PGP8) -/* Various option flags */ +/* Various option flags. Note that there should be no common string + names between the IMPORT_ and EXPORT_ flags as they can be mixed in + the keyserver-options option. */ #define IMPORT_ALLOW_LOCAL_SIGS (1<<0) #define IMPORT_REPAIR_PKS_SUBKEY_BUG (1<<1) @@ -252,6 +254,7 @@ struct { #define EXPORT_INCLUDE_LOCAL_SIGS (1<<0) #define EXPORT_INCLUDE_ATTRIBUTES (1<<1) #define EXPORT_INCLUDE_SENSITIVE_REVKEYS (1<<2) +#define EXPORT_MINIMAL (1<<3) #define LIST_SHOW_PHOTOS (1<<0) #define LIST_SHOW_POLICY_URLS (1<<1) |