* gpgkeys_hkp.c (handle_old_hkp_index): s/input/inp/ to avoid

shadowing warning.
This commit is contained in:
Werner Koch 2002-09-20 07:39:54 +00:00
parent c9f2aaca05
commit 0b180a7b9a
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2002-09-20 Werner Koch <wk@gnupg.org>
* gpgkeys_hkp.c (handle_old_hkp_index): s/input/inp/ to avoid
shadowing warning.
2002-09-19 David Shaw <dshaw@jabberwocky.com>
* gpgkeys_hkp.c (get_key, handle_old_hkp_index, search_key):

View File

@ -535,7 +535,7 @@ parse_hkp_index(IOBUF buffer,char *line)
}
void
handle_old_hkp_index(IOBUF input)
handle_old_hkp_index(IOBUF inp)
{
int ret,rc,count=0;
unsigned int buflen;
@ -554,7 +554,7 @@ handle_old_hkp_index(IOBUF input)
stop sending before a large search result page is
complete. */
rc=iobuf_read_line(input,&line,&buflen,&maxlen);
rc=iobuf_read_line(inp,&line,&buflen,&maxlen);
ret=parse_hkp_index(buffer,line);
if(ret==-1)