krb5_cc_resolve -- Resolve a credentials
cache name

C Prototype

krb5_error_code krb5_cc_resolve(
krb5_context context,
char *string_name,
krb5_ccache *id );
Arguments

context (input/output) | | The context structure. |
| string_name (input) | | The credentials cache name
to resolve. |
| id (output) | | The credentials cache identifier
that corresponds to the name in string_name. |
Description

This routine fills in id with a ccache
identifier that corresponds to the name in string_name.
It requires that string_name be of
the form type:residual and type is
a type known to the library.
Return
Values

This routine returns the following KRB5 status code:
0
|
Successful completion.
|
ENOMEM
|
Insufficient memory.
|