diff options
author | Karl Ramm <kcr@mit.edu> | 2008-01-21 07:48:39 +0000 |
---|---|---|
committer | Karl Ramm <kcr@mit.edu> | 2008-01-21 07:48:39 +0000 |
commit | b6144072c1ea4e944403dfe64d9c30c0c2af3b8c (patch) | |
tree | da3887abdddc59e4fcbd5611db1b64b9f8e1339f /h | |
parent | 83f54dbd0743838a51400a6097e37b7838de64ed (diff) |
a smattering of unsigned chars
Diffstat (limited to 'h')
-rw-r--r-- | h/internal.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/h/internal.h b/h/internal.h index 1516138..ac07099 100644 --- a/h/internal.h +++ b/h/internal.h @@ -126,9 +126,9 @@ void Z_gettimeofday(struct _ZTimeval *ztv, struct timezone *tz); #ifdef HAVE_KRB5 int ZGetCreds(krb5_creds **creds_out); int ZGetCredsRealm(krb5_creds **creds_out, char *realm); -Code_t Z_Checksum(krb5_data *cksumbuf, krb5_keyblock *keyblock, krb5_cksumtype cksumtype, char **asn1_data, int *asn1_len); +Code_t Z_Checksum(krb5_data *cksumbuf, krb5_keyblock *keyblock, krb5_cksumtype cksumtype, char **asn1_data, unsigned int *asn1_len); Code_t Z_ExtractEncCksum(krb5_keyblock *keyblock, krb5_enctype *enctype, krb5_cksumtype *cksumtype); -int Z_krb5_verify_cksum(krb5_keyblock *keyblock, krb5_data *cksumbuf, krb5_cksumtype cksumtype, char *asn1_data, int asn1_len); +int Z_krb5_verify_cksum(krb5_keyblock *keyblock, krb5_data *cksumbuf, krb5_cksumtype cksumtype, unsigned char *asn1_data, int asn1_len); Code_t Z_InsertZcodeChecksum(krb5_keyblock *keyblock, ZNotice_t *notice, char *buffer, char *cksum_start, int cksum_len, |