1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-06-26 01:52:45 +02:00

fixed type incompatibility

This commit is contained in:
Stefan Bellon 2002-11-13 21:50:33 +00:00
parent 5ecf0cbd79
commit 5059ac6f0b
2 changed files with 6 additions and 1 deletions

View File

@ -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>
* keyedit.c (show_key_with_all_names_colon): Make --with-colons

View File

@ -920,7 +920,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++)