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/g10.c | |
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/g10.c')
-rw-r--r-- | g10/g10.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1664,9 +1664,9 @@ main( int argc, char **argv ) opt.force_v3_sigs = 1; opt.escape_from = 1; opt.import_options=IMPORT_SK2PK; - opt.export_options=EXPORT_ATTRIBUTES|EXPORT_UNUSABLE_SIGS; + opt.export_options=EXPORT_ATTRIBUTES; opt.keyserver_options.import_options=IMPORT_REPAIR_PKS_SUBKEY_BUG; - opt.keyserver_options.export_options=EXPORT_ATTRIBUTES|EXPORT_UNUSABLE_SIGS; + opt.keyserver_options.export_options=EXPORT_ATTRIBUTES; opt.keyserver_options.options= KEYSERVER_INCLUDE_SUBKEYS|KEYSERVER_INCLUDE_REVOKED|KEYSERVER_TRY_DNS_SRV|KEYSERVER_HONOR_KEYSERVER_URL; opt.verify_options= |