summaryrefslogtreecommitdiff
path: root/sbin/isakmpd
diff options
context:
space:
mode:
authorHakan Olsson <ho@cvs.openbsd.org>2005-02-10 14:43:15 +0000
committerHakan Olsson <ho@cvs.openbsd.org>2005-02-10 14:43:15 +0000
commit7479a991f0db71b2f78432331061d6af07105dee (patch)
tree38791c5b5392b993eb7f26cad284974b99d706d2 /sbin/isakmpd
parent17c3fb0a6d195d88dc659b3d984a37496d2a3beb (diff)
Make it compile.
Diffstat (limited to 'sbin/isakmpd')
-rw-r--r--sbin/isakmpd/sysdep/common/libsysdep/arc4random.c4
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)];