keyblock->contents = 0;
kret = krb5_fcc_read_ui_2(context, id, &ui2);
- keyblock->keytype = ui2;
+ keyblock->enctype = ui2;
CHECK(kret);
if (data->version == KRB5_FCC_FVNO_3) {
kret = krb5_fcc_read_ui_2(context, id, &ui2);
- keyblock->keytype = ui2;
+ keyblock->enctype = ui2;
CHECK(kret);
}
krb5_fcc_data *data = (krb5_fcc_data *)id->data;
krb5_error_code ret;
- ret = krb5_fcc_store_ui_2(context, id, keyblock->keytype);
+ ret = krb5_fcc_store_ui_2(context, id, keyblock->enctype);
CHECK(ret);
if (data->version == KRB5_FCC_FVNO_3) {
- ret = krb5_fcc_store_ui_2(context, id, keyblock->keytype);
+ ret = krb5_fcc_store_ui_2(context, id, keyblock->enctype);
CHECK(ret);
}
ret = krb5_fcc_store_int32(context, id, keyblock->length);