change to type krb5_confounder
authorJohn Kohl <jtkohl@mit.edu>
Wed, 23 May 1990 10:31:26 +0000 (10:31 +0000)
committerJohn Kohl <jtkohl@mit.edu>
Wed, 23 May 1990 10:31:26 +0000 (10:31 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@904 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/crypto/os/rnd_confoun.c

index 09140f5882c4cb16dd46b52d7dec3b75ea6c0d33..35a8b83e4444b1cfd7e1790ab7cdf29fe765c342 100644 (file)
@@ -22,7 +22,7 @@ static char rcsid_rnd_counfoun_c[] =
 /*
  * Generate a random confounder
  */
-krb5_ui_4
+krb5_confounder
 krb5_random_confounder PROTOTYPE((void))
 {
     static int seeded = 0;
@@ -36,5 +36,5 @@ krb5_random_confounder PROTOTYPE((void))
     }
     /* this only gives us 31 random buts, but so what ? */
     retval = random();
-    return (krb5_ui_4) retval;
+    return (krb5_confounder) retval;
 }