* 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

@ -1,5 +1,9 @@
2002-08-28 David Shaw <dshaw@jabberwocky.com>
* gpgkeys_hkp.c: (parse_hkp_index): Use same types on all
platforms. This was probably leftover from earlier code where the
typing mattered.
* gpgkeys_hkp.c: Overall cleanup from iobuf conversion. Be
consistent in m_alloc and malloc usage. Remove include-disabled
(meaningless on HKP). RISC OS tweak.

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;