use krb5_free_cred_contents

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@22419 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2008-01-13 09:41:54 +00:00
parent 41a2d8597f
commit 4e58a4c1cd

View File

@@ -72,7 +72,7 @@ print_tickets (krb5_context context,
{ {
krb5_error_code ret; krb5_error_code ret;
krb5_cc_cursor cursor; krb5_cc_cursor cursor;
krb5_creds creds; krb5_creds cred;
char *str; char *str;
ret = krb5_unparse_name (context, principal, &str); ret = krb5_unparse_name (context, principal, &str);
@@ -99,10 +99,10 @@ print_tickets (krb5_context context,
while ((ret = krb5_cc_next_cred (context, while ((ret = krb5_cc_next_cred (context,
ccache, ccache,
&cursor, &cursor,
&creds)) == 0) { &cred)) == 0) {
if (print_cred(context, &creds)) if (print_cred(context, &cred))
return 500; return 500;
krb5_free_creds_contents (context, &creds); krb5_free_cred_contents (context, &cred);
} }
if (ret != KRB5_CC_END) { if (ret != KRB5_CC_END) {
lreply(500, "krb5_cc_get_next: %d", ret); lreply(500, "krb5_cc_get_next: %d", ret);