From: John Kohl Date: Thu, 11 Jan 1990 13:26:24 +0000 (+0000) Subject: tkt_authent needs pointers to, not inline, structures X-Git-Tag: krb5-1.0-alpha2~1294 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=8b70e0f24b95a464911e74abf56ff05ac52e9f11;p=krb5.git tkt_authent needs pointers to, not inline, structures git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@84 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/include/krb5/krb5.h b/src/include/krb5/krb5.h index 7fba39444..28dd2c6f4 100644 --- a/src/include/krb5/krb5.h +++ b/src/include/krb5/krb5.h @@ -80,8 +80,8 @@ typedef struct _krb5_authenticator { } krb5_authenticator; typedef struct _krb5_tkt_authent { - krb5_ticket ticket; - krb5_authenticator authenticator; + krb5_ticket *ticket; + krb5_authenticator *authenticator; } krb5_tkt_authent; /* credentials: Ticket, session key, etc. */