summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Karl Ramm <kcr@mit.edu>2008-01-21 18:01:29 +0000
committerGravatar Karl Ramm <kcr@mit.edu>2008-01-21 18:01:29 +0000
commit125183b2bce6874c2eca34f1a0253de32e9c957a (patch)
tree27dd2b5990979464d012ea96ebc527a309becfc9
parentea96ccd1f26e7317e37d69d9d81943090d3f6488 (diff)
cast args to des_ecb_encrypt and des_quad_cksum to squash last warnings
-rw-r--r--lib/ZCkZAut.c2
-rw-r--r--lib/ZFmtAuth.c2
-rw-r--r--server/bdump.c2
-rw-r--r--server/kstuff.c8
-rw-r--r--server/subscr.c2
5 files changed, 8 insertions, 8 deletions
diff --git a/lib/ZCkZAut.c b/lib/ZCkZAut.c
index a3d06f9..7411bd6 100644
--- a/lib/ZCkZAut.c
+++ b/lib/ZCkZAut.c
@@ -121,7 +121,7 @@ Code_t ZCheckZcodeAuthentication(ZNotice_t *notice,
ZChecksum_t our_checksum;
our_checksum = des_quad_cksum((unsigned char *)cksum0_base, NULL, cksum0_len, 0,
- key_data);
+ (C_Block *)key_data);
if (our_checksum == notice->z_checksum) {
krb5_free_creds(Z_krb5_ctx, creds);
return ZAUTH_YES;
diff --git a/lib/ZFmtAuth.c b/lib/ZFmtAuth.c
index ba64742..21b133b 100644
--- a/lib/ZFmtAuth.c
+++ b/lib/ZFmtAuth.c
@@ -41,7 +41,7 @@ ZFormatAuthenticNotice(ZNotice_t *notice,
newnotice.z_checksum = 0;
#else
newnotice.z_checksum =
- (ZChecksum_t)des_quad_cksum((unsigned char *)buffer, NULL, ptr - buffer, 0, session);
+ (ZChecksum_t)des_quad_cksum((unsigned char *)buffer, NULL, ptr - buffer, 0, (C_Block *)session);
#endif
if ((retval = Z_FormatRawHeader(&newnotice, buffer, buffer_len,
&hdrlen, NULL, NULL)) != ZERR_NONE)
diff --git a/server/bdump.c b/server/bdump.c
index a3a684f..4f5b5d5 100644
--- a/server/bdump.c
+++ b/server/bdump.c
@@ -1258,7 +1258,7 @@ bdump_recv_loop(Server *server)
syslog(LOG_ERR,"brl bad cblk read: %s (%s)",
error_message(retval), cp);
} else {
- des_ecb_encrypt(cblock, Z_keydata(client->session_keyblock),
+ des_ecb_encrypt((C_Block *)cblock, (C_Block *)Z_keydata(client->session_keyblock),
serv_ksched.s, DES_DECRYPT);
}
} else if (*cp == 'Z') { /* Zcode! Long live the new flesh! */
diff --git a/server/kstuff.c b/server/kstuff.c
index 28492ee..63d1f1c 100644
--- a/server/kstuff.c
+++ b/server/kstuff.c
@@ -880,10 +880,10 @@ compute_checksum(ZNotice_t *notice,
cstart = notice->z_default_format + strlen(notice->z_default_format) + 1;
cend = cstart + strlen(cstart) + 1;
- checksum = des_quad_cksum((unsigned char *)hstart, NULL, cstart - hstart, 0, session_key);
- checksum ^= des_quad_cksum((unsigned char *)cend, NULL, hend - cend, 0, session_key);
+ checksum = des_quad_cksum((unsigned char *)hstart, NULL, cstart - hstart, 0, (C_Block *)session_key);
+ checksum ^= des_quad_cksum((unsigned char *)cend, NULL, hend - cend, 0, (C_Block *)session_key);
checksum ^= des_quad_cksum((unsigned char *)notice->z_message, NULL, notice->z_message_len,
- 0, session_key);
+ 0, (C_Block *)session_key);
return checksum;
#endif
}
@@ -899,7 +899,7 @@ static ZChecksum_t compute_rlm_checksum(ZNotice_t *notice,
cstart = notice->z_default_format + strlen(notice->z_default_format) + 1;
cend = cstart + strlen(cstart) + 1;
- checksum = des_quad_cksum((unsigned char *)hstart, NULL, cstart - hstart, 0, session_key);
+ checksum = des_quad_cksum((unsigned char *)hstart, NULL, cstart - hstart, 0, (C_Block *)session_key);
return checksum;
#endif
}
diff --git a/server/subscr.c b/server/subscr.c
index ab67f33..8ed6189 100644
--- a/server/subscr.c
+++ b/server/subscr.c
@@ -852,7 +852,7 @@ subscr_send_subs(Client *client)
syslog(LOG_WARNING, "subscr_send_subs: cannot allocate memory for DES keyblock: %m");
return errno;
}
- des_ecb_encrypt(Z_keydata(client->session_keyblock), bufp, serv_ksched.s, DES_ENCRYPT);
+ des_ecb_encrypt((C_Block *)Z_keydata(client->session_keyblock), (C_Block *)bufp, serv_ksched.s, DES_ENCRYPT);
retval = ZMakeAscii(buf, sizeof(buf), bufp, Z_keylen(client->session_keyblock));
} else {
#endif