mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-08 12:44:23 +01:00
fixed type incompatibility
This commit is contained in:
parent
fbffa8209b
commit
0907db4855
@ -1,3 +1,8 @@
|
|||||||
|
2002-11-13 Stefan Bellon <sbellon@sbellon.de>
|
||||||
|
|
||||||
|
* getkey.c (get_pubkey_byfprint_fast): Fixed type incompatibility,
|
||||||
|
was unsigned char instead of byte.
|
||||||
|
|
||||||
2002-11-13 David Shaw <dshaw@jabberwocky.com>
|
2002-11-13 David Shaw <dshaw@jabberwocky.com>
|
||||||
|
|
||||||
* encode.c (encode_simple): Make sure that files larger than about
|
* encode.c (encode_simple): Make sure that files larger than about
|
||||||
|
@ -919,7 +919,7 @@ get_pubkey_byfprint_fast (PKT_public_key *pk,
|
|||||||
int rc = 0;
|
int rc = 0;
|
||||||
KEYDB_HANDLE hd;
|
KEYDB_HANDLE hd;
|
||||||
KBNODE keyblock;
|
KBNODE keyblock;
|
||||||
unsigned char fprbuf[MAX_FINGERPRINT_LEN];
|
byte fprbuf[MAX_FINGERPRINT_LEN];
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
for (i=0; i < MAX_FINGERPRINT_LEN && i < fprint_len; i++)
|
for (i=0; i < MAX_FINGERPRINT_LEN && i < fprint_len; i++)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user