aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Bellon <[email protected]>2002-11-13 21:50:33 +0000
committerStefan Bellon <[email protected]>2002-11-13 21:50:33 +0000
commit5059ac6f0b1e901b454d768d5ba9274eb8e5fc87 (patch)
tree359c3e45ab8c2ffe20767d0b023ea5a3f2c9cd7b
parent* keyedit.c (show_key_with_all_names_colon): Make --with-colons --edit (diff)
downloadgnupg-5059ac6f0b1e901b454d768d5ba9274eb8e5fc87.tar.gz
gnupg-5059ac6f0b1e901b454d768d5ba9274eb8e5fc87.zip
fixed type incompatibility
-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 699cc8d08..8dbb60211 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]>
* keyedit.c (show_key_with_all_names_colon): Make --with-colons
diff --git a/g10/getkey.c b/g10/getkey.c
index 7ae6465aa..7d0070325 100644
--- a/g10/getkey.c
+++ b/g10/getkey.c
@@ -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++)