(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:
@@ -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)
|
||||
|
Reference in New Issue
Block a user