summaryrefslogtreecommitdiff
path: root/helper.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>1999-10-28 13:20:30 +1000
committerDamien Miller <djm@mindrot.org>1999-10-28 13:20:30 +1000
commit3d112efc672b877c74893229d3fd30f99489b9ff (patch)
tree7542e5627242ff533087a4fe103c2690dd97782f /helper.c
parent332e67fde27c4017d2df8dafe05a55be3c7597cd (diff)
Big PAM cleanup
Added header for arc4random to mktemp.c Fixed return type of arc4random
Diffstat (limited to 'helper.c')
-rw-r--r--helper.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/helper.c b/helper.c
index 3b0402ecf..c9aa51e4f 100644
--- a/helper.c
+++ b/helper.c
@@ -57,14 +57,14 @@ void setproctitle(const char *fmt, ...)
57 /* FIXME */ 57 /* FIXME */
58} 58}
59 59
60unsigned char arc4random(void) 60unsigned int arc4random(void)
61{ 61{
62 unsigned char r; 62 unsigned int r;
63 63
64 if (rc4 == NULL) 64 if (rc4 == NULL)
65 arc4random_stir(); 65 arc4random_stir();
66 66
67 rc4_getbytes(rc4, &r, 1); 67 rc4_getbytes(rc4, (unsigned char *)&r, sizeof(r));
68 68
69 return(r); 69 return(r);
70} 70}