aboutsummaryrefslogtreecommitdiffstats
path: root/kbx/keybox-search-desc.h
diff options
context:
space:
mode:
authorNIIBE Yutaka <[email protected]>2018-10-26 03:38:43 +0000
committerNIIBE Yutaka <[email protected]>2018-10-26 03:38:43 +0000
commit4249e9a2bf028f007d1ddaac730f636e5c6da20f (patch)
treebc4c8fb6dcb0a181b2e908b93195f3141736e900 /kbx/keybox-search-desc.h
parentall: fix more spelling errors (diff)
downloadgnupg-4249e9a2bf028f007d1ddaac730f636e5c6da20f.tar.gz
gnupg-4249e9a2bf028f007d1ddaac730f636e5c6da20f.zip
kbx: Increase size of field for fingerprint.
* kbx/keybox-search-desc.h (fpr): Increase the size. -- In the function keydb_search_fpr in g10/keydb.c, it is copied using MAX_FINGERPRINT_LEN. So, more size is required. Fixes-commit: ecbbafb88d920e713439b6b1b8e1b41a6f8d0e38 Signed-off-by: NIIBE Yutaka <[email protected]>
Diffstat (limited to 'kbx/keybox-search-desc.h')
-rw-r--r--kbx/keybox-search-desc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/kbx/keybox-search-desc.h b/kbx/keybox-search-desc.h
index 6298994e9..c75bfa4c7 100644
--- a/kbx/keybox-search-desc.h
+++ b/kbx/keybox-search-desc.h
@@ -69,7 +69,7 @@ struct keydb_search_desc
int snlen; /* -1 := sn is a hex string */
union {
const char *name;
- unsigned char fpr[24];
+ unsigned char fpr[32];
u32 kid[2]; /* Note that this is in native endianness. */
unsigned char grip[20];
} u;