mirror of
git://git.gnupg.org/gnupg.git
synced 2024-12-22 10:19:57 +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>
|
||||
|
||||
* 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;
|
||||
KEYDB_HANDLE hd;
|
||||
KBNODE keyblock;
|
||||
unsigned char fprbuf[MAX_FINGERPRINT_LEN];
|
||||
byte fprbuf[MAX_FINGERPRINT_LEN];
|
||||
int i;
|
||||
|
||||
for (i=0; i < MAX_FINGERPRINT_LEN && i < fprint_len; i++)
|
||||
|
Loading…
x
Reference in New Issue
Block a user