switch to kcmuuid_t

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@24018 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2008-11-02 07:17:03 +00:00
parent 4ff39ca5b3
commit eceed3b5e2

View File

@@ -484,12 +484,12 @@ kcm_ccache_store_cred(krb5_context context,
struct kcm_creds *
kcm_ccache_find_cred_uuid(krb5_context context,
kcm_ccache ccache,
uuid_t uuid)
kcmuuid_t uuid)
{
struct kcm_creds *c;
for (c = ccache->creds; c != NULL; c = c->next)
if (uuid_compare(c->uuid, uuid) == 0)
if (memcmp(c->uuid, uuid, sizeof(c->uuid)) == 0)
return c;
return NULL;
@@ -515,7 +515,7 @@ kcm_ccache_store_cred_internal(krb5_context context,
return KRB5_CC_NOMEM;
}
uuid_generate((*c)->uuid);
RAND_bytes((*c)->uuid, sizeof((*c)->uuid));
*credp = &(*c)->cred;