summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2013-06-11 16:59:50 +0000
committerderaadt <deraadt@openbsd.org>2013-06-11 16:59:50 +0000
commitbef9f719eec9c5837e675c3d335bc97a9e1f6457 (patch)
treeb112d931d9efc18aa24b23587ff047053f1c1396
parentfinal removal of daddr64_t. daddr_t has been 64 bit for a long enough (diff)
downloadwireguard-openbsd-bef9f719eec9c5837e675c3d335bc97a9e1f6457.tar.xz
wireguard-openbsd-bef9f719eec9c5837e675c3d335bc97a9e1f6457.zip
spacing
-rw-r--r--lib/libc/crypt/arc4random.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/libc/crypt/arc4random.c b/lib/libc/crypt/arc4random.c
index 1697752a1ac..f00f5ee9f1c 100644
--- a/lib/libc/crypt/arc4random.c
+++ b/lib/libc/crypt/arc4random.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: arc4random.c,v 1.23 2012/06/24 18:25:12 matthew Exp $ */
+/* $OpenBSD: arc4random.c,v 1.24 2013/06/11 16:59:50 deraadt Exp $ */
/*
* Copyright (c) 1996, David Mazieres <dm@uun.org>
@@ -120,8 +120,7 @@ arc4_stir_if_needed(void)
{
pid_t pid = getpid();
- if (arc4_count <= 0 || !rs_initialized || arc4_stir_pid != pid)
- {
+ if (arc4_count <= 0 || !rs_initialized || arc4_stir_pid != pid) {
arc4_stir_pid = pid;
arc4_stir();
}