1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-09-24 15:31:41 +02:00

fix type incompatibility

This commit is contained in:
Stefan Bellon 2004-08-27 18:21:32 +00:00
parent ea279f1bae
commit 9355045841
2 changed files with 13 additions and 8 deletions

View File

@ -1,3 +1,8 @@
2004-08-27 Stefan Bellon <sbellon@roma>
* gpgkeys_hkp.c (search_key): Change type of variable skey from
unsigned char* to char* to fix type incompatibility.
2004-08-23 David Shaw <dshaw@jabberwocky.com> 2004-08-23 David Shaw <dshaw@jabberwocky.com>
* gpgkeys_ldap.c (get_key, search_key), gpgkeys_hkp.c (get_key, * gpgkeys_ldap.c (get_key, search_key), gpgkeys_hkp.c (get_key,

View File

@ -629,7 +629,7 @@ search_key(char *searchkey)
int max=0,len=0,ret=KEYSERVER_INTERNAL_ERROR,rc; int max=0,len=0,ret=KEYSERVER_INTERNAL_ERROR,rc;
struct http_context hd; struct http_context hd;
char *search=NULL,*request=NULL; char *search=NULL,*request=NULL;
unsigned char *skey=searchkey; char *skey=searchkey;
fprintf(output,"SEARCH %s BEGIN\n",searchkey); fprintf(output,"SEARCH %s BEGIN\n",searchkey);