mirror of
git://git.gnupg.org/gnupg.git
synced 2024-11-11 21:48:50 +01:00
fix type incompatibility
This commit is contained in:
parent
ea279f1bae
commit
9355045841
@ -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,
|
||||||
|
@ -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);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user