diff options
author | Werner Koch <[email protected]> | 2018-08-28 13:11:10 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2018-08-28 13:16:19 +0000 |
commit | db67ccb759426c1173761574b14bdfe6a76394c2 (patch) | |
tree | 151e370543b0255114ce01532b7db15c77b774bb /g10/pkclist.c | |
parent | gpg: Prepare for longer card fingerprints. (diff) | |
download | gnupg-db67ccb759426c1173761574b14bdfe6a76394c2.tar.gz gnupg-db67ccb759426c1173761574b14bdfe6a76394c2.zip |
gpg: Remove unused arg from a function.
* g10/getkey.c (get_best_pubkey_byname): Remove unused arg 'no_akl'.
Change both callers.
Signed-off-by: Werner Koch <[email protected]>
Diffstat (limited to 'g10/pkclist.c')
-rw-r--r-- | g10/pkclist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/g10/pkclist.c b/g10/pkclist.c index e7484432a..46258bf85 100644 --- a/g10/pkclist.c +++ b/g10/pkclist.c @@ -834,7 +834,7 @@ find_and_check_key (ctrl_t ctrl, const char *name, unsigned int use, if (from_file) rc = get_pubkey_fromfile (ctrl, pk, name); else - rc = get_best_pubkey_byname (ctrl, NULL, pk, name, &keyblock, 0, 0); + rc = get_best_pubkey_byname (ctrl, NULL, pk, name, &keyblock, 0); if (rc) { int code; |