krb5_copy_data -- Copy a Kerberos
data structure

C Prototype

krb5_error_code krb5_copy_data(
krb5_context context,
const krb5_data *indata,
krb5_data **outdata );
Arguments

context (input/output) | | The context structure. |
| indata (input) | | The data structure to be
copied. |
| outdata (output) | | A pointer to a copy of the
data structure. |
Description

This routine copies a data structure, filling in *outdata to
point to the newly allocated copy, which should be freed with krb5_free_data.
Return
Values

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