diff options
author | Hakan Olsson <ho@cvs.openbsd.org> | 2005-02-10 14:43:15 +0000 |
---|---|---|
committer | Hakan Olsson <ho@cvs.openbsd.org> | 2005-02-10 14:43:15 +0000 |
commit | 7479a991f0db71b2f78432331061d6af07105dee (patch) | |
tree | 38791c5b5392b993eb7f26cad284974b99d706d2 /sbin/isakmpd | |
parent | 17c3fb0a6d195d88dc659b3d984a37496d2a3beb (diff) |
Make it compile.
Diffstat (limited to 'sbin/isakmpd')
-rw-r--r-- | sbin/isakmpd/sysdep/common/libsysdep/arc4random.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/isakmpd/sysdep/common/libsysdep/arc4random.c b/sbin/isakmpd/sysdep/common/libsysdep/arc4random.c index 9fe87876d30..28222f769ef 100644 --- a/sbin/isakmpd/sysdep/common/libsysdep/arc4random.c +++ b/sbin/isakmpd/sysdep/common/libsysdep/arc4random.c @@ -1,4 +1,4 @@ -/* $OpenBSD: arc4random.c,v 1.6 2004/10/08 15:18:26 hshoexer Exp $ */ +/* $OpenBSD: arc4random.c,v 1.7 2005/02/10 14:43:14 ho Exp $ */ /* * Arc4 random number generator for OpenBSD. @@ -78,7 +78,7 @@ arc4_addrandom(struct arc4_stream *as, u_char *dat, int datlen) static void arc4_stir(struct arc4_stream *as) { - int fd; + int fd, i; struct { struct timeval tv; u_int8_t rnd[128 - sizeof(struct timeval)]; |