diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 2001-01-26 12:04:20 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 2001-01-26 12:04:20 +0000 |
commit | e0dd5013a9032ca0515b11c0700b862776a249e6 (patch) | |
tree | ca13f2a9a6421fb832074c7a3973715fcf0f6cc3 /sbin/isakmpd/sysdep | |
parent | a35fc8c0e0c41c0e6a4d15f10830e55a41173829 (diff) |
Pedantic style police
Diffstat (limited to 'sbin/isakmpd/sysdep')
-rw-r--r-- | sbin/isakmpd/sysdep/common/libsysdep/arc4random.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/sbin/isakmpd/sysdep/common/libsysdep/arc4random.c b/sbin/isakmpd/sysdep/common/libsysdep/arc4random.c index fffc2c1d8b2..e38faec8d9f 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.1 2001/01/26 11:34:00 niklas Exp $ */ +/* $OpenBSD: arc4random.c,v 1.2 2001/01/26 12:04:19 niklas Exp $ */ /* * Arc4 random number generator for OpenBSD. @@ -93,8 +93,10 @@ 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)); } |