check_keyring: skip keys known to be missing

Signed-off-by: Andrew Gregory <andrew.gregory.8@gmail.com>
This commit is contained in:
Andrew Gregory 2014-09-30 15:00:32 -04:00 committed by Allan McRae
parent e123e04741
commit aec4241af2
1 changed files with 3 additions and 4 deletions

View File

@ -1074,10 +1074,9 @@ static int check_keyring(alpm_handle_t *handle)
alpm_list_t *k;
for(k = keys; k; k = k->next) {
char *key = k->data;
if(_alpm_key_in_keychain(handle, key) == 0) {
if(!alpm_list_find_str(errors, key)) {
errors = alpm_list_add(errors, strdup(key));
}
if(!alpm_list_find_str(errors, key) &&
_alpm_key_in_keychain(handle, key) == 0) {
errors = alpm_list_add(errors, strdup(key));
}
}
FREELIST(keys);