From 183ecde2acd73c6eebf6c962abe479a1b83f7c7d Mon Sep 17 00:00:00 2001 From: John Kohl Date: Wed, 20 Feb 1991 18:13:43 +0000 Subject: [PATCH] *** empty log message *** git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@1744 dc483132-0cff-0310-8789-dd5450dbe970 --- src/lib/krb5/free/f_tkt_auth.c | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 src/lib/krb5/free/f_tkt_auth.c diff --git a/src/lib/krb5/free/f_tkt_auth.c b/src/lib/krb5/free/f_tkt_auth.c new file mode 100644 index 000000000..fccddcc8a --- /dev/null +++ b/src/lib/krb5/free/f_tkt_auth.c @@ -0,0 +1,33 @@ +/* + * $Source$ + * $Author$ + * + * Copyright 1990,1991 by the Massachusetts Institute of Technology. + * All Rights Reserved. + * + * For copying and distribution information, please see the file + * . + * + * krb5_free_tkt_authent() + */ + +#if !defined(lint) && !defined(SABER) +static char rcsid_f_tkt_authent_c [] = +"$Id$"; +#endif /* !lint & !SABER */ + +#include +#include +#include + +void +krb5_free_tkt_authent(val) +krb5_tkt_authent *val; +{ + if (val->ticket) + krb5_free_ticket(val->ticket); + if (val->authenticator) + krb5_free_authenticator(val->authenticator); + xfree(val); + return; +} -- 2.26.2