diff options
author | 2013-06-11 16:59:50 +0000 | |
---|---|---|
committer | 2013-06-11 16:59:50 +0000 | |
commit | bef9f719eec9c5837e675c3d335bc97a9e1f6457 (patch) | |
tree | b112d931d9efc18aa24b23587ff047053f1c1396 | |
parent | final removal of daddr64_t. daddr_t has been 64 bit for a long enough (diff) | |
download | wireguard-openbsd-bef9f719eec9c5837e675c3d335bc97a9e1f6457.tar.xz wireguard-openbsd-bef9f719eec9c5837e675c3d335bc97a9e1f6457.zip |
spacing
-rw-r--r-- | lib/libc/crypt/arc4random.c | 5 |
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(); } |