summaryrefslogtreecommitdiffstats
path: root/src/include
diff options
context:
space:
mode:
authorJohn Kohl <jtkohl@mit.edu>1990-01-11 13:26:24 +0000
committerJohn Kohl <jtkohl@mit.edu>1990-01-11 13:26:24 +0000
commit8b70e0f24b95a464911e74abf56ff05ac52e9f11 (patch)
tree17835ac118df220f34761a8b3b87a4f0bf65528e /src/include
parentd929b4c495f4e8f092641506174c98533af7b4eb (diff)
tkt_authent needs pointers to, not inline, structures
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@84 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/include')
-rw-r--r--src/include/krb5/krb5.h4
1 files changed, 2 insertions, 2 deletions
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. */