mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
Merged recent changes from 1.4
This commit is contained in:
parent
4459fcb032
commit
00ffc478de
15 changed files with 341 additions and 148 deletions
|
@ -2948,7 +2948,7 @@ parse_auto_key_locate(char *options)
|
|||
|
||||
while((tok=optsep(&options)))
|
||||
{
|
||||
struct akl *akl,*last;
|
||||
struct akl *akl,*check,*last=NULL;
|
||||
int dupe=0;
|
||||
|
||||
if(tok[0]=='\0')
|
||||
|
@ -2977,13 +2977,13 @@ parse_auto_key_locate(char *options)
|
|||
}
|
||||
|
||||
/* We must maintain the order the user gave us */
|
||||
for(last=opt.auto_key_locate;last && last->next;last=last->next)
|
||||
for(check=opt.auto_key_locate;check;last=check,check=check->next)
|
||||
{
|
||||
/* Check for duplicates */
|
||||
if(last && last->type==akl->type
|
||||
if(check->type==akl->type
|
||||
&& (akl->type!=AKL_SPEC
|
||||
|| (akl->type==AKL_SPEC
|
||||
&& strcmp(last->spec->uri,akl->spec->uri)==0)))
|
||||
&& strcmp(check->spec->uri,akl->spec->uri)==0)))
|
||||
{
|
||||
dupe=1;
|
||||
free_akl(akl);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue