diff options
author | David Shaw <[email protected]> | 2002-07-24 21:17:19 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2002-07-24 21:17:19 +0000 |
commit | 553ac3f08c996f38ddb652aa58cd5b583c347d76 (patch) | |
tree | 3db239e8bcffdf2b659bfa08bd86fac4c8ffe77c /g10/hkp.c | |
parent | * options.h, exec.h, exec.c (set_exec_path, exec_write), g10.c (main), (diff) | |
download | gnupg-553ac3f08c996f38ddb652aa58cd5b583c347d76.tar.gz gnupg-553ac3f08c996f38ddb652aa58cd5b583c347d76.zip |
* main.h, import.c (parse_import_options, fix_hkp_corruption, import_one,
delete_inv_parts), g10.c (main): New import-option
"repair-hkp-subkey-bug", which repairs as much as possible the HKP
mangling multiple subkeys bug. It is on by default for keyserver
receives, and off by default for regular --import.
* main.h, import.c (import, import_one, delete_inv_parts), hkp.c
(hkp_ask_import), keyserver.c (keyserver_spawn): Use keyserver import
options when doing keyserver receives.
Diffstat (limited to 'g10/hkp.c')
-rw-r--r-- | g10/hkp.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -98,7 +98,8 @@ hkp_ask_import( KEYDB_SEARCH_DESC *desc, void *stats_handle) : g10_errstr(rc) ); } else { - rc = import_keys_stream( hd.fp_read, 0, stats_handle); + rc = import_keys_stream( hd.fp_read, 0, stats_handle, + opt.keyserver_options.import_options); http_close( &hd ); } |