Lines Matching refs:kret
45 krb5_error_code kret; in gss_krb5_copy_ccache() local
63 kret = krb5_init_context(&context); in gss_krb5_copy_ccache()
64 if (kret) { in gss_krb5_copy_ccache()
65 *minor_status = kret; in gss_krb5_copy_ccache()
70 kret = asprintf(&str, "%.*s", (int)data_set->elements[0].length, in gss_krb5_copy_ccache()
73 if (kret == -1) { in gss_krb5_copy_ccache()
78 kret = krb5_cc_resolve(context, str, &id); in gss_krb5_copy_ccache()
80 if (kret) { in gss_krb5_copy_ccache()
81 *minor_status = kret; in gss_krb5_copy_ccache()
85 kret = krb5_cc_copy_cache(context, id, out); in gss_krb5_copy_ccache()
88 if (kret) { in gss_krb5_copy_ccache()
89 *minor_status = kret; in gss_krb5_copy_ccache()