diff options
author | David Shaw <dshaw@jabberwocky.com> | 2002-08-28 22:10:29 +0200 |
---|---|---|
committer | David Shaw <dshaw@jabberwocky.com> | 2002-08-28 22:10:29 +0200 |
commit | 262a8719a44879a1dab9bc4aae8e667878f853cd (patch) | |
tree | d822737c80753d251e97764d75636b04d10887f0 /keyserver | |
parent | * sig-check.c (do_check_messages, do_check): Show keyid in error messages. (diff) | |
download | gnupg2-262a8719a44879a1dab9bc4aae8e667878f853cd.tar.xz gnupg2-262a8719a44879a1dab9bc4aae8e667878f853cd.zip |
* gpgkeys_hkp.c: (parse_hkp_index): Use same types on all platforms.
This was probably leftover from earlier code where the typing mattered.
Diffstat (limited to 'keyserver')
-rw-r--r-- | keyserver/ChangeLog | 4 | ||||
-rw-r--r-- | keyserver/gpgkeys_hkp.c | 7 |
2 files changed, 5 insertions, 6 deletions
diff --git a/keyserver/ChangeLog b/keyserver/ChangeLog index 7c7a383bb..0883e8568 100644 --- a/keyserver/ChangeLog +++ b/keyserver/ChangeLog @@ -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. diff --git a/keyserver/gpgkeys_hkp.c b/keyserver/gpgkeys_hkp.c index f722c5f13..843035be8 100644 --- a/keyserver/gpgkeys_hkp.c +++ b/keyserver/gpgkeys_hkp.c @@ -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; |