krb5_error_code krb5_fcc_read_keyblock PROTOTYPE((krb5_ccache id , krb5_keyblock *keyblock ));
krb5_error_code krb5_fcc_read_data PROTOTYPE((krb5_ccache id , krb5_data *data ));
krb5_error_code krb5_fcc_read_int32 PROTOTYPE((krb5_ccache id , krb5_int32 *i ));
-krb5_error_code krb5_fcc_read_int16 PROTOTYPE((krb5_ccache id , krb5_int16 *i ));
+krb5_error_code krb5_fcc_read_ui_2 PROTOTYPE((krb5_ccache id , krb5_ui_2 *i ));
krb5_error_code krb5_fcc_read_keytype PROTOTYPE((krb5_ccache id , krb5_keytype *k ));
krb5_error_code krb5_fcc_read_int PROTOTYPE((krb5_ccache id , int *i ));
krb5_error_code krb5_fcc_read_bool PROTOTYPE((krb5_ccache id , krb5_boolean *b ));
addr->contents = 0;
- kret = krb5_fcc_read_int16(id, &addr->addrtype);
+ kret = krb5_fcc_read_ui_2(id, &addr->addrtype);
CHECK(kret);
kret = krb5_fcc_read_int(id, &addr->length);
}
krb5_error_code
-krb5_fcc_read_int16(id, i)
+krb5_fcc_read_ui_2(id, i)
krb5_ccache id;
- krb5_int16 *i;
+ krb5_ui_2 *i;
{
- return krb5_fcc_read(id, (krb5_pointer) i, sizeof(krb5_int16));
+ return krb5_fcc_read(id, (krb5_pointer) i, sizeof(krb5_ui_2));
}
krb5_error_code