(gss_userok): make argument to printf type correct

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@10435 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Assar Westerlund
2001-08-05 06:38:57 +00:00
parent 24e9ecdd66
commit fca1e57c46

View File

@@ -88,7 +88,8 @@ gss_userok(void *app_data, char *username)
goto fail;
}
asprintf (&ticketfile, "%s%u", KRB5_DEFAULT_CCROOT, pw->pw_uid);
asprintf (&ticketfile, "%s%u", KRB5_DEFAULT_CCROOT,
(unsigned)pw->pw_uid);
ret = krb5_cc_resolve(gssapi_krb5_context, ticketfile, &ccache);
if (ret)