diff options
author | David Shaw <[email protected]> | 2004-11-26 15:51:37 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2004-11-26 15:51:37 +0000 |
commit | 6dedf7a068e617b7d5af94fece868c86f7cdff55 (patch) | |
tree | 0a0d8b0ac74d03cd123ccc9bb38e86c00e9c2e73 /g10/g10.c | |
parent | * options.h, export.c (parse_export_options, do_export_stream): Add (diff) | |
download | gnupg-6dedf7a068e617b7d5af94fece868c86f7cdff55.tar.gz gnupg-6dedf7a068e617b7d5af94fece868c86f7cdff55.zip |
* options.h, export.c (parse_export_options, do_export_stream), import.c
(parse_import_options, import_keys_internal): Make the import-options and
export-options distinct since they can be mixed together as part of
keyserver-options.
Diffstat (limited to '')
-rw-r--r-- | g10/g10.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1655,9 +1655,9 @@ main( int argc, char **argv ) opt.force_v3_sigs = 1; opt.escape_from = 1; opt.import_options=IMPORT_SK2PK; - opt.export_options=EXPORT_INCLUDE_ATTRIBUTES; + opt.export_options=EXPORT_ATTRIBUTES; opt.keyserver_options.import_options=IMPORT_REPAIR_PKS_SUBKEY_BUG; - opt.keyserver_options.export_options=EXPORT_INCLUDE_ATTRIBUTES; + 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= @@ -3254,7 +3254,7 @@ main( int argc, char **argv ) break; case aFastImport: - opt.import_options |= IMPORT_FAST_IMPORT; + opt.import_options |= IMPORT_FAST; case aImport: import_keys( argc? argv:NULL, argc, NULL, opt.import_options ); break; |