fixed a typecast
authorAndrew Tridgell <tridge@samba.org>
Tue, 27 Oct 1998 14:19:35 +0000 (14:19 +0000)
committerAndrew Tridgell <tridge@samba.org>
Tue, 27 Oct 1998 14:19:35 +0000 (14:19 +0000)
md4.c

diff --git a/md4.c b/md4.c
index 0ab2501..9fc0825 100644 (file)
--- a/md4.c
+++ b/md4.c
@@ -225,7 +225,7 @@ static void MDreverse(X)
    /* Process data */
    if (count == 512)
      { /* Full block of data to handle */
-       MDblock(MDp,(unsigned int *)X);
+       MDblock(MDp,(unsigned int32 *)X);
      }
    else if (count > 512) /* Check for count too large */
      { rprintf(FERROR,"\nError: MDupdate called with illegal count value %d."