diff options
author | 2004-11-02 11:07:13 +0000 | |
---|---|---|
committer | 2004-11-02 11:07:13 +0000 | |
commit | 8f83e64230ef4350c5db841dc1334a63930513f6 (patch) | |
tree | 95e308bb128a8224cf1e68471a263530b8ea7d94 /lib/libc | |
parent | supress logging of the (likely very long) repeated Connect -> Active -> (diff) | |
download | wireguard-openbsd-8f83e64230ef4350c5db841dc1334a63930513f6.tar.xz wireguard-openbsd-8f83e64230ef4350c5db841dc1334a63930513f6.zip |
kill spaces
ok djm@
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/crypt/arc4random.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/crypt/arc4random.c b/lib/libc/crypt/arc4random.c index 5b376488ec0..5c768f54944 100644 --- a/lib/libc/crypt/arc4random.c +++ b/lib/libc/crypt/arc4random.c @@ -1,4 +1,4 @@ -/* $OpenBSD: arc4random.c,v 1.10 2003/11/26 21:40:08 djm Exp $ */ +/* $OpenBSD: arc4random.c,v 1.11 2004/11/02 11:07:13 hshoexer Exp $ */ /* * Arc4 random number generator for OpenBSD. @@ -99,14 +99,14 @@ arc4_stir(struct arc4_stream *as) } arc4_stir_pid = getpid(); - arc4_addrandom(as, (void *) &rdat, sizeof(rdat)); + arc4_addrandom(as, (void *)&rdat, sizeof(rdat)); /* * Discard early keystream, as per recommendations in: * http://www.wisdom.weizmann.ac.il/~itsik/RC4/Papers/Rc4_ksa.ps */ for (i = 0; i < 256; i++) - (void) arc4_getbyte(as); + (void)arc4_getbyte(as); } static inline u_int8_t |