1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-06-07 23:27:48 +02:00

* gpgkeys_hkp.c (parse_hkp_index): Type tweaks.

* gpgkeys_hkp.c (main): Add experimental code warning.
This commit is contained in:
David Shaw 2002-06-06 16:25:16 +00:00
parent e1f88c5d3f
commit e6e35d9937
2 changed files with 10 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2002-06-06 David Shaw <dshaw@jabberwocky.com>
* gpgkeys_hkp.c (parse_hkp_index): Type tweaks.
* gpgkeys_hkp.c (main): Add experimental code warning.
2002-06-05 David Shaw <dshaw@jabberwocky.com>
* Makefile.am, gpgkeys_hkp.c (new): Experimental HKP keyserver

View File

@ -397,8 +397,7 @@ unsigned int scan_isodatestr( const char *string )
int parse_hkp_index(char *line,char **buffer)
{
static int open=0,revoked=0;
static char *key;
static unsigned char *uid;
static char *key,*uid;
static unsigned int bits,createtime;
int ret=0;
@ -662,6 +661,9 @@ int main(int argc,char *argv[])
console=stderr;
fprintf(console,
"gpgkeys: Warning: this is an *experimental* HKP interface!\n");
while((arg=getopt(argc,argv,"ho:"))!=-1)
switch(arg)
{