replace krb5_free_creds_contents by krb5_free_cred_contents

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@13790 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Johan Danielsson
2004-04-25 19:25:35 +00:00
parent 76a580ad8a
commit 26457b7135
26 changed files with 60 additions and 59 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright (c) 1997 - 2003 Kungliga Tekniska H<>gskolan
* Copyright (c) 1997 - 2004 Kungliga Tekniska H<>gskolan
* (Royal Institute of Technology, Stockholm, Sweden).
* All rights reserved.
*
@@ -219,7 +219,7 @@ get_new_cache(krb5_context context,
ret = krb5_cc_store_cred (context, id, &cred);
if (ret)
return ret;
krb5_free_creds_contents (context, &cred);
krb5_free_cred_contents (context, &cred);
*ret_cache = id;
return 0;
}