aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Bellon <[email protected]>2002-11-13 21:49:57 +0000
committerStefan Bellon <[email protected]>2002-11-13 21:49:57 +0000
commit0907db4855afff836e7c4b548823f9440bfb15bc (patch)
treed19b8524db76b8df493a8095b46eda90ad4819cd
parent* encode.c (encode_simple): Make sure that files larger than about 4G use (diff)
downloadgnupg-0907db4855afff836e7c4b548823f9440bfb15bc.tar.gz
gnupg-0907db4855afff836e7c4b548823f9440bfb15bc.zip
fixed type incompatibility
Diffstat (limited to '')
-rw-r--r--g10/ChangeLog5
-rw-r--r--g10/getkey.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/g10/ChangeLog b/g10/ChangeLog
index 1f49dc691..1a1f976d4 100644
--- a/g10/ChangeLog
+++ b/g10/ChangeLog
@@ -1,3 +1,8 @@
+2002-11-13 Stefan Bellon <[email protected]>
+
+ * getkey.c (get_pubkey_byfprint_fast): Fixed type incompatibility,
+ was unsigned char instead of byte.
+
2002-11-13 David Shaw <[email protected]>
* encode.c (encode_simple): Make sure that files larger than about
diff --git a/g10/getkey.c b/g10/getkey.c
index 5bb2d2263..93ef8b04f 100644
--- a/g10/getkey.c
+++ b/g10/getkey.c
@@ -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++)