krb5_error_code krb5_fcc_store_keyblock PROTOTYPE((krb5_ccache id , krb5_keyblock *keyblock ));
krb5_error_code krb5_fcc_store_data PROTOTYPE((krb5_ccache id , krb5_data *data ));
krb5_error_code krb5_fcc_store_int32 PROTOTYPE((krb5_ccache id , krb5_int32 *i ));
-krb5_error_code krb5_fcc_store_int16 PROTOTYPE((krb5_ccache id , krb5_int16 *i ));
+krb5_error_code krb5_fcc_store_ui_2 PROTOTYPE((krb5_ccache id , krb5_ui_2 *i ));
krb5_error_code krb5_fcc_store_keytype PROTOTYPE((krb5_ccache id , krb5_keytype *k ));
krb5_error_code krb5_fcc_store_int PROTOTYPE((krb5_ccache id , int *i ));
krb5_error_code krb5_fcc_store_bool PROTOTYPE((krb5_ccache id , krb5_boolean *b ));
*/
#if !defined(lint) && !defined(SABER)
-static char fcc_write_c[] = "$Id$";
+static char rcsid_fcc_write_c[] = "$Id$";
#endif /* !lint && !SABER */
#include <krb5/copyright.h>
{
krb5_error_code ret;
- ret = krb5_fcc_store_int16(id, &addr->addrtype);
+ ret = krb5_fcc_store_ui_2(id, &addr->addrtype);
CHECK(ret);
ret = krb5_fcc_store_int(id, &addr->length);
CHECK(ret);
}
krb5_error_code
-krb5_fcc_store_int16(id, i)
+krb5_fcc_store_ui_2(id, i)
krb5_ccache id;
- krb5_int16 *i;
+ krb5_ui_2 *i;
{
- return krb5_fcc_write(id, (char *) i, sizeof(krb5_int16));
+ return krb5_fcc_write(id, (char *) i, sizeof(krb5_ui_2));
}
krb5_error_code