mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
Changed the way i18n files are located under Windows. The setting of the
Registry key is not anymore required. Helpfiles are not properly located.
This commit is contained in:
parent
d7f0b3bd89
commit
9a8ee6e6be
11 changed files with 1271 additions and 1066 deletions
|
@ -1,3 +1,8 @@
|
|||
2008-03-25 Werner Koch <wk@g10code.com>
|
||||
|
||||
* keyserver.c (parse_keyrec): Take care of char defaulting to
|
||||
unsigned when using hextobyte.
|
||||
|
||||
2008-03-25 David Shaw <dshaw@jabberwocky.com> (wk)
|
||||
|
||||
* import.c (collapse_uids): Fix bug 894: possible memory
|
||||
|
|
|
@ -683,9 +683,9 @@ parse_keyrec(char *keystring)
|
|||
while(*tok)
|
||||
if(tok[0]=='%' && tok[1] && tok[2])
|
||||
{
|
||||
if((userid[i]=hextobyte(&tok[1]))==-1)
|
||||
userid[i]='?';
|
||||
int c;
|
||||
|
||||
userid[i] = (c=hextobyte(&tok[1])) == -1 ? '?' : c;
|
||||
i++;
|
||||
tok+=3;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue