diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 2001-01-26 12:10:57 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 2001-01-26 12:10:57 +0000 |
commit | bed310b398bdde15410b2af71828c4fcd9661d8a (patch) | |
tree | 3e8492fed99ef6fd2dabd94242da778b92b587b2 /sbin | |
parent | 3cc7f18c860c1e7ef615d9725bffe170bb1076d3 (diff) |
Pedantic style police
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/isakmpd/sysdep/common/libsysdep/arc4random.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/sbin/isakmpd/sysdep/common/libsysdep/arc4random.c b/sbin/isakmpd/sysdep/common/libsysdep/arc4random.c index e38faec8d9f..511d499b71c 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.2 2001/01/26 12:04:19 niklas Exp $ */ +/* $OpenBSD: arc4random.c,v 1.3 2001/01/26 12:10:56 niklas Exp $ */ /* * Arc4 random number generator for OpenBSD. @@ -93,10 +93,8 @@ arc4_stir(as) read(fd, rdat.rnd, sizeof(rdat.rnd)); close(fd); } - /* - * fd < 0? Ah, what the heck. We'll just take whatever was on the - * stack... - */ + /* fd < 0? Ah, what the heck. We'll just take whatever was on the + * stack... */ arc4_addrandom(as, (void *) &rdat, sizeof(rdat)); } |