cast the seed to an octet *
authorJohn Kohl <jtkohl@mit.edu>
Thu, 3 Jan 1991 17:39:04 +0000 (17:39 +0000)
committerJohn Kohl <jtkohl@mit.edu>
Thu, 3 Jan 1991 17:39:04 +0000 (17:39 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@1613 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/crypto/md4/md4crypto.c

index 4365f429a7ede2b3c35bed75076e22e0cc7a8843..5ed8b7181721c05b7a21337399e5f8705a73ec27 100644 (file)
@@ -59,7 +59,7 @@ krb5_checksum *outcksum;
            *output++ = (working.buffer[i] >> j) & 0xFF;
 
     keyblock.length = seed_length;
-    keyblock.contents = seed;
+    keyblock.contents = (krb5_octet *)seed;
     keyblock.keytype = KEYTYPE_DES;
 
     if (retval = mit_des_process_key(&eblock, &keyblock))