diff options
author | David Shaw <[email protected]> | 2006-03-14 02:23:00 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2006-03-14 02:23:00 +0000 |
commit | 671ec45001cb61d8881c0cc297ab59c2e662d43d (patch) | |
tree | ec66c762f3e8354c6c3d6fa277c614d7e928ba48 /g10/main.h | |
parent | * sig-check.c (signature_check2): Print the backsig warning when there (diff) | |
download | gnupg-671ec45001cb61d8881c0cc297ab59c2e662d43d.tar.gz gnupg-671ec45001cb61d8881c0cc297ab59c2e662d43d.zip |
* main.h, import.c (import_one): Optionally return the fingerprint of
the key being imported. (import_keys_internal, import_keys_stream,
import): Change all callers.
Diffstat (limited to '')
-rw-r--r-- | g10/main.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/g10/main.h b/g10/main.h index 69150a301..ac337fac9 100644 --- a/g10/main.h +++ b/g10/main.h @@ -210,8 +210,8 @@ MPI encode_md_value( int pubkey_algo, MD_HANDLE md, int parse_import_options(char *str,unsigned int *options,int noisy); void import_keys( char **fnames, int nnames, void *stats_hd, unsigned int options ); -int import_keys_stream( IOBUF inp, - void *stats_hd, unsigned int options ); +int import_keys_stream( IOBUF inp,void *stats_hd,unsigned char **fpr, + size_t *fpr_len,unsigned int options ); void *import_new_stats_handle (void); void import_release_stats_handle (void *p); void import_print_stats (void *hd); |