1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-02 22:46:30 +02:00

* gpgkeys_hkp.c: (parse_hkp_index): Use same types on all platforms.

This was probably leftover from earlier code where the typing mattered.
This commit is contained in:
David Shaw 2002-08-28 20:10:29 +00:00
parent a119391e26
commit 262a8719a4
2 changed files with 5 additions and 6 deletions

View file

@ -378,12 +378,7 @@ static int
parse_hkp_index(IOBUF buffer,char *line)
{
static int open=0,revoked=0;
static char *key=NULL,*type=NULL;
#ifdef __riscos__
static char *uid=NULL;
#else
static unsigned char *uid=NULL;
#endif
static char *key=NULL,*type=NULL,*uid=NULL;
static u32 bits,createtime;
int ret=0;