diff options
author | Werner Koch <[email protected]> | 2011-08-10 12:11:30 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2011-08-10 12:11:30 +0000 |
commit | 816bee1fa0d833ac72ea4e7d52465e6e1da2645d (patch) | |
tree | 91be759197e74f2e32f821edecce8df6eb444742 /g10/import.c | |
parent | Fix autoconf warnings and update config.* files. (diff) | |
download | gnupg-816bee1fa0d833ac72ea4e7d52465e6e1da2645d.tar.gz gnupg-816bee1fa0d833ac72ea4e7d52465e6e1da2645d.zip |
Fixed set but unused variable bugs
Diffstat (limited to '')
-rw-r--r-- | g10/import.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/g10/import.c b/g10/import.c index ffbcf168f..b48f12636 100644 --- a/g10/import.c +++ b/g10/import.c @@ -1596,7 +1596,7 @@ import_secret_one (ctrl_t ctrl, const char *fname, KBNODE keyblock, public key block, and below we will output another one for the secret keys. FIXME? */ import_one (ctrl, fname, pub_keyblock, stats, - NULL, NULL, opt.import_options, 1); + NULL, NULL, options, 1); /* Fixme: We should check for an invalid keyblock and cancel the secret key import in this case. */ |