diff options
author | David Shaw <[email protected]> | 2005-01-01 21:21:11 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2005-01-01 21:21:11 +0000 |
commit | fbee22ac0cc906490482515bb43da53609a5cba0 (patch) | |
tree | dc8bede70c3412d5ee3f593c15a69449dda88117 /g10/options.h | |
parent | * configure.ac: Better implementation for the SRV check. We don't need to (diff) | |
download | gnupg-fbee22ac0cc906490482515bb43da53609a5cba0.tar.gz gnupg-fbee22ac0cc906490482515bb43da53609a5cba0.zip |
* options.h, import.c (parse_import_options, delete_inv_parts): Add
import-unusable-sigs flag to enable importing unusable (currently:
expired) sigs.
* options.h, export.c (parse_export_options, do_export_stream): Add
export-unusable-sigs flag to enable exporting unusable (currently:
expired) sigs.
Diffstat (limited to '')
-rw-r--r-- | g10/options.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/g10/options.h b/g10/options.h index 1ad6b44a2..2f7b03e15 100644 --- a/g10/options.h +++ b/g10/options.h @@ -252,11 +252,13 @@ struct { #define IMPORT_FAST (1<<2) #define IMPORT_SK2PK (1<<3) #define IMPORT_MERGE_ONLY (1<<4) +#define IMPORT_UNUSABLE_SIGS (1<<5) #define EXPORT_LOCAL_SIGS (1<<0) #define EXPORT_ATTRIBUTES (1<<1) #define EXPORT_SENSITIVE_REVKEYS (1<<2) #define EXPORT_MINIMAL (1<<3) +#define EXPORT_UNUSABLE_SIGS (1<<4) #define LIST_SHOW_PHOTOS (1<<0) #define LIST_SHOW_POLICY_URLS (1<<1) |