new style

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@1272 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Assar Westerlund
1997-03-08 04:00:50 +00:00
parent 2c974bc55b
commit 1a17ca7950

View File

@@ -53,16 +53,17 @@ krb5_mk_req(krb5_context context,
cred->session.contents.data,
cred->session.contents.length);
r = krb5_build_authenticator (context, cred->client,
NULL, &auth,
r = krb5_build_authenticator (context,
*auth_context,
cred,
NULL,
&auth,
&authenticator);
if (r)
return r;
(*auth_context)->authenticator->cusec = auth->cusec;
(*auth_context)->authenticator->ctime = auth->ctime;
r = krb5_build_ap_req (context, cred, ap_req_options,
authenticator, outbuf);
krb5_data_free (&authenticator);
return r;
}