summaryrefslogtreecommitdiff
path: root/crypto/heimdal
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/heimdal')
-rw-r--r--crypto/heimdal/kcm/cache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/heimdal/kcm/cache.c b/crypto/heimdal/kcm/cache.c
index 1bd220c8a70a..47442c353f03 100644
--- a/crypto/heimdal/kcm/cache.c
+++ b/crypto/heimdal/kcm/cache.c
@@ -102,7 +102,7 @@ kcm_ccache_resolve_by_uuid(krb5_context context,
for (p = ccache_head; p != NULL; p = p->next) {
if ((p->flags & KCM_FLAGS_VALID) == 0)
continue;
- if (memcmp(p->uuid, uuid, sizeof(uuid)) == 0) {
+ if (memcmp(p->uuid, uuid, sizeof(kcmuuid_t)) == 0) {
ret = 0;
break;
}