summaryrefslogtreecommitdiff
path: root/lib/ZFmtAuth.c
diff options
context:
space:
mode:
authorGravatar Karl Ramm <kcr@mit.edu>2008-01-21 03:39:30 +0000
committerGravatar Karl Ramm <kcr@mit.edu>2008-01-21 03:39:30 +0000
commit5bbdaaf2b5b6c3dee89279bd8a045148a39f6385 (patch)
tree2e2c602680b563b4068c8fb718369891a52ea913 /lib/ZFmtAuth.c
parenta418b69cbced2ce64bf55796fdb890026233e65e (diff)
cleanup various warnings from gcc -Wall
Diffstat (limited to 'lib/ZFmtAuth.c')
-rw-r--r--lib/ZFmtAuth.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/lib/ZFmtAuth.c b/lib/ZFmtAuth.c
index 1e19f2f..ba64742 100644
--- a/lib/ZFmtAuth.c
+++ b/lib/ZFmtAuth.c
@@ -11,7 +11,7 @@
*/
#ifndef lint
-static char rcsid_ZFormatAuthenticNotice_c[] = "$Id$";
+static const char rcsid_ZFormatAuthenticNotice_c[] = "$Id$";
#endif
#include <internal.h>
@@ -19,8 +19,8 @@ static char rcsid_ZFormatAuthenticNotice_c[] = "$Id$";
#if defined(HAVE_KRB4) || defined(HAVE_KRB5)
Code_t
ZFormatAuthenticNotice(ZNotice_t *notice,
- register char *buffer,
- register int buffer_len,
+ char *buffer,
+ int buffer_len,
int *len,
C_Block session)
{
@@ -41,7 +41,7 @@ ZFormatAuthenticNotice(ZNotice_t *notice,
newnotice.z_checksum = 0;
#else
newnotice.z_checksum =
- (ZChecksum_t)des_quad_cksum(buffer, NULL, ptr - buffer, 0, session);
+ (ZChecksum_t)des_quad_cksum((unsigned char *)buffer, NULL, ptr - buffer, 0, session);
#endif
if ((retval = Z_FormatRawHeader(&newnotice, buffer, buffer_len,
&hdrlen, NULL, NULL)) != ZERR_NONE)
@@ -76,8 +76,6 @@ ZFormatAuthenticNoticeV5(ZNotice_t *notice,
int retval, hdrlen, hdr_adj;
krb5_enctype enctype;
krb5_cksumtype cksumtype;
- int valid;
- char *svcinst, *x, *y;
int key_len;
char *cksum_start, *cstart, *cend;
int cksum_len;